-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.77 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.77 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ZDEV-Website",
"version": "1.0.0",
"description": "",
"scripts": {
"prebuild": "rm -rf node_modules/.cache && bin/buildStatic.sh",
"check:node": "check-node-version --package",
"test": "npm run lint",
"dev": "npm run prebuild && next dev",
"build": "npm run prebuild && next build",
"start": "next start",
"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": "cp deployment/development.json now.json && now deploy --token=$NOW_TOKEN --team=zdev && now alias --token=$NOW_TOKEN --team=zdev",
"deploy:ci:prod": "cp deployment/production.json now.json && now deploy --token=$NOW_TOKEN --team=zdev && now alias --token=$NOW_TOKEN --team=zdev",
"postinstall": "npm run check:node",
"lint": "npm run lint:js && npm run lint:sass",
"lint:without:prettier": "npm run lint:js:without:prettier && npm run lint:sass",
"lint:watch": "nodemon --watch ./ --exec \"npm run lint:without:prettier\"",
"lint:js": "eslint ./pages ./components ./styles",
"lint:js:without:prettier": "npm run lint:js -- --rule 'prettier/prettier: 0'",
"lint:sass": "stylelint '{components,pages}/**/*.js'",
"format:sass": "stylefmt --recursive 'styles/**/*.*css'",
"format:js": "prettier --single-quote --trailing-comma all --no-semi --print-width 180 --write \"{pages,styles,components}/**/*.js\"",
"precommit": "lint-staged && npm run lint",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check"
},
"license": "ISC",
"dependencies": {
"autoprefixer": "6.7.6",
"babel-plugin-module-resolver": "2.5.0",
"babel-plugin-styled-components": "^1.1.5",
"babel-plugin-transform-define": "^1.3.0",
"babel-plugin-wrap-in-js": "^1.1.0",
"bootstrap-sass": "^3.3.5",
"check-node-version": "^2.1.0",
"firebase": "^4.1.3",
"glob": "7.1.1",
"ionicons-pre": "^1.0.0-pre",
"mixpanel-browser": "^2.15.0",
"moment": "^2.18.1",
"next": "^4.2.1",
"node-sass": "^4.4.0",
"normalize.css": "5.0.0",
"npm": "^5.0.3",
"postcss-easy-import": "2.0.0",
"postcss-loader": "1.3.3",
"raw-loader": "^0.5.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-modal": "^2.2.1",
"react-scrollable-anchor": "^0.5.0",
"react-slick": "^0.14.11",
"sass-loader": "^4.1.1",
"smooth-scroll": "^11.1.0",
"styled-components": "^2.1.0",
"yarn": "^0.24.5"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "7.1.1",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-transform-class-properties": "6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "6.22.0",
"babel-preset-react-hmre": "1.1.1",
"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.13.3",
"lint-staged": "^3.4.0",
"ncp": "^2.0.0",
"nodemon": "^1.11.0",
"now": "^9.2.7",
"prettier": "^1.2.2",
"recursive-readdir-sync": "^1.0.6",
"sass-lint": "^1.10.2",
"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": ">=8 <9"
},
"lint-staged": {
"{components,pages,styles}/**/*.js": [
"prettier --single-quote --trailing-comma all --no-semi --print-width 180 --write",
"git add"
]
}
}