-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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
{
"name": "tic-tac-toe-react",
"version": "0.0.0",
"private": true,
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "5.0.6",
"redux": "^3.7.2",
"styled-components": "^2.1.2"
},
"devDependencies": {
"babel-plugin-relay": "^1.3.0",
"babel-plugin-styled-components": "^1.2.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"chai": "^4.1.1",
"enzyme": "^2.7.0",
"react-test-renderer": "^15.4.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-prettier": "^2.2.0",
"flow-bin": "^0.53.1",
"lint-staged": "^4.0.4",
"pre-render": "^0.1.0-preview.2",
"prettier": "^1.6.1",
"react-scripts": "1.0.12",
"stylelint": "^8.0.0",
"stylelint-config-primer": "^2.0.1",
"stylelint-config-standard": "^17.0.0",
"stylelint-config-styled-components-processor": "^0.1.1",
"stylelint-order": "^0.6.0",
"stylelint-processor-styled-components": "^0.4.0"
},
"lint-staged": {
"*.js": [
"eslint --no-ignore --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"lint": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" . && stylelint \"./src/**/*.js\"",
"fix": "eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" --fix .",
"build": "node ./setup && react-scripts build",
"test": "node ./setup && react-scripts test --env=jsdom",
"deploy": "node ./setup && react-scripts build",
"start": "node ./setup && react-scripts start"
}
}