forked from zero-to-mastery/ZtM-Job-Board
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.08 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "jobboard",
"version": "0.2.0",
"private": true,
"homepage": "https://alumni-board.netlify.app/",
"dependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.5",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.5",
"@types/react-lazyload": "^2.6.0",
"@types/react-leaflet": "^2.5.1",
"@types/webfontloader": "^1.6.29",
"g": "^2.0.1",
"leaflet": "^1.6.0",
"live-server": "^1.2.1",
"node-sass-chokidar": "^1.3.5",
"npm-run-all": "^4.1.5",
"react": "^16.9.0",
"react-countup": "^4.3.3",
"react-dom": "^16.9.0",
"react-favicon": "0.0.17",
"react-lazyload": "^2.6.5",
"react-leaflet": "^2.6.1",
"react-scripts": "^3.4.3",
"react-search-input": "^0.11.3",
"tachyons": "^4.11.1",
"typescript": "^3.8.3",
"uuid": "^8.2.0",
"webfontloader": "^1.6.28"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": "prettier --write"
},
"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": {
"@babel/helper-call-delegate": "^7.10.3",
"gh-pages": "^2.1.1",
"glob-all": "^3.1.0",
"husky": "^4.2.5",
"jsonlint": "^1.6.3",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"purgecss-webpack-plugin": "^1.6.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}