-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 968 Bytes
/
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
{
"name": "react-training",
"version": "0.1.0",
"private": true,
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"mdx-deck": "^1.7.14",
"prettier": "^1.14.2",
"react-scripts": "^1.0.11"
},
"dependencies": {
"classnames": "^2.2.5",
"normalizr": "^3.2.2",
"prop-types": "^15.5.10",
"purecss": "^0.6.2",
"ramda": "^0.23.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^2.8.1",
"redux-promise-middleware": "^4.2.0",
"superagent": "^3.4.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"pres": "mdx-deck presentations/deck.mdx",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json}": [
"prettier --config ./.prettierrc --write",
"git add"
]
}
}