forked from zero-to-mastery/ZtM-Job-Board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.42 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": "jobboard",
"version": "0.2.0",
"private": true,
"homepage": "https://zero-to-mastery.github.io/ZtM-Job-Board",
"dependencies": {
"google-map-react": "^1.1.4",
"leaflet": "^1.5.1",
"node-sass-chokidar": "^1.3.5",
"npm-run-all": "^4.1.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-favicon": "0.0.17",
"react-leaflet": "^2.5.0",
"react-scripts": "^3.3.0",
"react-search-input": "^0.11.3",
"tachyons": "^4.11.1",
"typescript": "^3.6.4"
},
"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 && purgecss --css build/static/css/*.css --content build/static/index.html build/static/js/*.js --out build/static/css",
"test": "npm-run-all build-css build-js && react-scripts test --env=jsdom",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"gh-pages": "^2.1.1",
"glob-all": "^3.1.0",
"purgecss-webpack-plugin": "^1.6.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}