-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 956 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
{
"name": "react-ts-boilerplate",
"version": "0.1.0",
"private": true,
"dependencies": {
"node-sass": "^4.10.0",
"npm-run-all": "^4.1.5",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-scripts-ts": "3.1.0"
},
"scripts": {
"build-css": "node-sass --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive --use-polling --polling-interval 1000",
"start-js": "react-scripts-ts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/node": "^10.12.12",
"@types/react": "^16.7.13",
"@types/react-dom": "^16.0.11",
"typescript": "^3.2.1"
}
}