-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.47 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.47 KB
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
{
"name": "new-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"history": "^4.7.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts-ts": "2.16.0",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-responsive": "^4.3.7",
"redux-thunk": "^2.3.0"
},
"scripts": {
"build": "npm run build-css && react-scripts-ts build",
"build-css": "node-sass-chokidar src/common/assets/scss -o src/common/assets/css",
"start": "npm-run-all -p watch-css start-ts",
"start-ts": "react-scripts-ts start",
"test": "react-scripts-ts test --env=jsdom",
"watch-css": "npm run build-css && node-sass-chokidar src/common/assets/scss -o src/common/assets/css --watch --recursive"
},
"devDependencies": {
"@types/enzyme": "^3.1.11",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/enzyme-to-json": "^1.5.1",
"@types/history": "^4.6.2",
"@types/jest": "^23.1.4",
"@types/node": "^10.5.2",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/react-redux": "^6.0.3",
"@types/react-router": "^4.0.28",
"@types/react-router-dom": "^4.2.7",
"@types/redux-thunk": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^2.9.2"
}
}