-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "kindredshins-website",
"version": "1.0.0",
"private": true,
"scripts": {
"bootstrap": "cd lambda && yarn && cd ../ && yarn",
"serve": "npm-run-all -p serve:*",
"serve:next": "next",
"serve:lambda": "cd lambda && yarn serve",
"build": "npm-run-all -p build:*",
"build:next": "next build",
"build:lambda": "cd lambda && yarn && yarn build",
"start": "next start",
"export": "npm-run-all -s build:next export:next build:lambda",
"export:next": "next export"
},
"dependencies": {
"conditional-wrap": "^1.0.0",
"date-fns": "^1.30.1",
"fetch-jsonp": "^1.1.3",
"next": "^8.0.3",
"polished": "^3.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-responsive": "^6.1.1",
"react-svg": "^7.2.9",
"react-typography": "^0.16.18",
"slugify": "^1.3.4",
"soundcloud-audio": "^1.4.0",
"styled-components": "^4.1.3",
"typography": "^0.16.18",
"wretch": "^1.5.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-styled-components": "^1.10.0",
"dotenv": "^6.2.0",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add",
"jest --bail --findRelatedTests"
]
}
}