forked from moltin/react-demo-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 869 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
{
"name": "moltin-react-demo-store",
"version": "0.2.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged"
},
"dependencies": {
"@moltin/sdk": "^2.3.0",
"history": "^4.7.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "next",
"react-scripts": "1.1.0",
"redux": "^3.7.1",
"redux-form": "7.2.3",
"redux-thunk": "2.2.0"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "1.10.2",
"redux-logger": "^3.0.6"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
}
}