-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.47 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
39
40
41
42
{
"name": "react-ts-tutorial",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^4.1.3",
"jquery": "^3.3.1",
"lodash": "^4.17.10",
"popper.js": "^1.14.4",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-mobx": "^0.0.3",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
},
"scripts": {
"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",
"start-ts": "react-app-rewired start --scripts-version react-scripts-ts",
"start": "npm-run-all -p watch-css start-ts",
"build-ts": "react-app-rewired build --scripts-version react-scripts-ts",
"build": "npm-run-all build-css build-ts",
"test": "react-app-rewired test --scripts-version react-scripts-ts --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.116",
"@types/node": "^10.9.1",
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"@types/react-router": "^4.0.30",
"@types/react-router-dom": "^4.3.0",
"@types/webpack": "^4.4.11",
"@types/webpack-env": "^1.13.6",
"npm-run-all": "^4.1.3",
"react-app-rewire-webpack-bundle-analyzer": "^1.0.1",
"react-app-rewired": "^1.5.2",
"react-scripts-ts": "2.17.0",
"typescript": "^3.0.1"
}
}