-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 919 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
29
{
"name": "react-apft",
"version": "0.1.0",
"private": true,
"author": {
"name": "Joseph Fusco",
"email": "hello@josephfus.co",
"url": "https://josephfus.co/"
},
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-scripts": "1.0.14",
"react-validation": "^3.0.6"
},
"scripts": {
"deploy": "npm run build&&gh-pages -d build",
"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": "NODE_PATH=src react-scripts start",
"build": "NODE_PATH=src react-scripts build",
"test": "NODE_PATH=src react-scripts test --env=jsdom"
},
"devDependencies": {
"gh-pages": "^1.0.0",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.1"
}
}