-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"name": "SP-react-redux-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"start-ts": "react-scripts-ts start",
"build-ts": "react-scripts-ts build",
"build": "npm-run-all build-css build-ts",
"start": "npm-run-all -p watch-css start-ts",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive"
},
"dependencies": {
"history": "^4.7.2",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "next",
"react-scripts": "1.0.17",
"react-scripts-ts": "2.8.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"sanitize.css": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^21.1.8",
"@types/node": "^8.5.1",
"@types/react": "^16.0.30",
"@types/react-dom": "^16.0.3",
"@types/react-router-redux": "^5.0.10"
}
}