forked from zero-to-mastery/ZtM-Job-Board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 991 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": "jobboard",
"version": "0.2.0",
"private": true,
"homepage": "https://zero-to-mastery.github.io/ZtM-Job-Board",
"dependencies": {
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-favicon": "0.0.14",
"react-scripts": "1.1.4",
"tachyons": "^4.9.1"
},
"scripts": {
"start": "npm-run-all -p watch-css start-js",
"watch-css": "npm run build-css && node-sass-chokidar ./src/ --output ./src/ --output-style compressed --watch --recursive",
"start-js": "react-scripts start",
"build": "npm-run-all build-css build-js",
"build-css": "node-sass-chokidar ./src/ --output ./src/ --output-style compressed",
"build-js": "react-scripts build",
"postbuild": "mv ./build/favicons/* ./build/ && rm -r ./build/favicons",
"test": "react-scripts test --env=jsdom",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"gh-pages": "^1.1.0"
}
}