-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.42 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
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
{
"name": "react-seed",
"version": "0.0.1",
"main": "index.js",
"author": "Richard Gill <[email protected]>",
"scripts": {
"upgrade": "yarn upgrade-interactive",
"check:node": "check-node-version --package",
"deploy:dev": "yarn run build && firebase deploy --token='1/KwRN4JmOiCZcJ_5eOmDvFkdU4-5qpxHF3l9TbF6zVgE' --project=\"react-seed-ae755\"",
"deploy:prod": "yarn run build && firebase deploy --token='1/KwRN4JmOiCZcJ_5eOmDvFkdU4-5qpxHF3l9TbF6zVgE' --project=\"react-seed-prod\"",
"deploy:ci:dev": "yarn run deploy:dev",
"deploy:ci:prod": "yarn run deploy:prod",
"test": "yarn lint",
"start": "webpack-dev-server",
"prod": "cross-env NODE_ENV=production webpack-dev-server --env.prod=true",
"build": "cross-env NODE_ENV=production webpack --env.prod=true",
"lint": "yarn lint:js && yarn lint:sass",
"lint:without:prettier": "yarn lint:js:without:prettier && yarn lint:sass",
"lint:watch": "nodemon --watch src --exec \"yarn lint:without:prettier\"",
"lint:js": "eslint ./src",
"lint:js:without:prettier": "yarn lint:js -- --rule 'prettier/prettier: 0'",
"lint:sass": "stylelint 'src/**/*.*css' --syntax scss",
"format:sass": "stylefmt --recursive 'src/**/*.*css'",
"format:js": "prettier --single-quote --trailing-comma all --no-semi --print-width 180 --write \"src/**/*.js\"",
"postinstall": "yarn run check:node",
"precommit": "lint-staged && yarn lint",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "7.1.1",
"babel-loader": "^6.2.10",
"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": "3.1.4",
"css-loader": "^0.26.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",
"file-loader": "^0.10.0",
"firebase-tools": "^3.2.2",
"husky": "^0.14.3",
"lint-staged": "^3.4.0",
"node-sass": "^4.7.2",
"prettier": "^1.2.2",
"remove-flow-types-loader": "^1.0.0",
"sass-lint": "^1.10.2",
"sass-loader": "^4.1.1",
"style-loader": "0.13.1",
"stylefmt": "^5.3.2",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"transform-loader": "^0.2.3",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.2.1"
},
"dependencies": {
"babel-runtime": "6.22.0",
"bootstrap-sass": "^3.3.7",
"check-node-version": "^3.2.0",
"classnames": "^2.2.5",
"lodash": "^4.17.4",
"r-dom": "^2.3.2",
"react": "16.2.0",
"react-addons-shallow-compare": "^15.6.2",
"react-dom": "16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redbox-react": "^1.5.0",
"redux": "^3.7.2",
"redux-freeze": "^0.1.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"styled-components": "^3.2.1"
},
"engines": {
"node": ">=8"
},
"lint-staged": {
"src/**/*.js": [
"yarn format:js --",
"git add"
],
"src/**/*.*css": [
"stylefmt",
"git add"
]
}
}