-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "react-ts-todo-list",
"version": "0.1.0",
"private": true,
"dependencies": {
"classnames": "^2.2.5",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-scripts-ts": "2.13.0",
"redux": "^3.7.2",
"reselect": "^3.0.1"
},
"scripts": {
"start-js": "react-scripts-ts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts-ts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive"
},
"devDependencies": {
"@types/classnames": "^2.2.3",
"@types/jest": "^22.1.3",
"@types/node": "^9.4.6",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"@types/react-redux": "^5.0.15",
"@types/redux": "^3.6.0",
"typescript": "^2.7.2"
}
}