-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.62 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.62 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "Example-Website",
"version": "1.0.0",
"description": "",
"scripts": {
"prebuild": "rm -rf node_modules/.cache && bin/buildStatic.sh",
"check:node": "check-node-version --package",
"ci": "yarn run lint && yarn build",
"dev": "yarn run prebuild && next dev",
"build": "yarn run prebuild && next build",
"start": "yarn next",
"deploy:dev": "cp deployment/development.json now.json && now deploy && now alias",
"deploy:prod": "cp deployment/production.json now.json && now deploy && now alias",
"deploy:ci:dev": "yarn run deploy:dev -- --token=E4RjOF6qkG8lj63zfDmeW0hT",
"deploy:ci:prod": "yarn run deploy:prod -- --token=E4RjOF6qkG8lj63zfDmeW0hT",
"postinstall": "yarn run check:node",
"lint:watch": "nodemon --watch ./ --exec \"yarn run lint:without:prettier\"",
"lint": "eslint ./pages ./components ./styles",
"lint:without:prettier": "yarn run lint:js -- --rule 'prettier/prettier: 0'",
"format:js": "prettier --single-quote --trailing-comma all --no-semi --print-width 180 --write \"{pages,styles,components}/**/*.js\"",
"precommit": "lint-staged && yarn run lint",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check"
},
"license": "ISC",
"dependencies": {
"autoprefixer": "6.7.6",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-define": "^1.3.0",
"babel-plugin-wrap-in-js": "^1.1.1",
"check-node-version": "^2.1.0",
"glob": "7.1.1",
"moment": "^2.18.1",
"next": "^8.1.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-modal": "^2.2.1",
"styled-components": "^4.3.2"
},
"devDependencies": {
"babel-eslint": "7.1.1",
"babel-plugin-root-import": "^6.1.0",
"cross-env": "^5.0.1",
"eslint": "^3.14.1",
"eslint-config-airbnb": "14.0.0",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "3.0.2",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "6.9.0",
"husky": "^0.14.3",
"lint-staged": "^3.4.0",
"ncp": "^2.0.0",
"nodemon": "^1.11.0",
"now": "^9.0.1",
"prettier": "^1.2.2",
"recursive-readdir-sync": "^1.0.6",
"sharp": "^0.18.4",
"stylefmt": "^5.3.2",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"stylelint-processor-styled-components": "^0.1.2"
},
"engines": {
"node": ">=10 <11"
},
"lint-staged": {
"{components,pages,styles}/**/*.js": [
"prettier --single-quote --trailing-comma all --no-semi --print-width 180 --write",
"git add"
]
}
}