-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "tic-tac-toe",
"version": "0.1.0",
"private": true,
"dependencies": {
"ramda": "^0.25.0",
"ramda-adjunct": "^2.6.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-scripts": "1.1.4",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-observable": "^0.18.0",
"rxjs": "^5.5.10",
"styled-components": "^3.2.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"format": "prettier-standard 'src/**/*js'",
"precommit": "lint-staged",
"eject": "react-scripts eject"
},
"lint-staged": {
"linters": {
"src/**/*.js": [
"prettier-standard",
"git add"
]
}
},
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"husky": "^0.14.3",
"jest-enzyme": "^6.0.0",
"jest-styled-components": "^5.0.1",
"lint-staged": "^7.0.4",
"prettier-standard": "^8.0.1",
"react-test-renderer": "^16.3.1",
"redux-mock-store": "^1.5.1"
}
}