forked from zero-to-mastery/ZtM-Job-Board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.17 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
68
69
70
71
72
{
"name": "jobboard",
"version": "0.2.0",
"private": true,
"type": "module",
"homepage": ".",
"dependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-lazyload": "^3.1.1",
"@types/react-leaflet": "^2.8.2",
"@types/webfontloader": "^1.6.34",
"g": "^2.0.1",
"leaflet": "^1.7.1",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-countup": "^6.1.1",
"react-dom": "^17.0.2",
"react-favicon": "0.0.26",
"react-lazyload": "^3.2.0",
"react-leaflet": "^3.2.5",
"react-scripts": "^5.0.0",
"react-search-input": "^0.11.3",
"sass": "^1.49.8",
"tachyons": "^4.12.0",
"typescript": "^4.5.5",
"uuid": "^8.3.2",
"webfontloader": "^1.6.28"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": "npx prettier --write"
},
"scripts": {
"start": "npm-run-all -p watch-css start-js aggregate-json",
"watch-css": "npm run build-css && sass ./src --watch",
"start-js": "react-scripts start",
"build": "react-scripts test --no-watchman --watchAll=false && npm-run-all build-css build-js",
"build-css": "sass ./src",
"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 --output build/static/css",
"test": "npm-run-all aggregate-json && react-scripts test --env=jsdom",
"deploy": "gh-pages -d build",
"aggregate-json": "node scripts/aggregate-json.mjs",
"countries-json": "node scripts/countries-json.mjs",
"prepare": "husky install"
},
"devDependencies": {
"@babel/helper-call-delegate": "^7.12.13",
"gh-pages": "^3.2.3",
"glob-all": "^3.2.1",
"husky": "^7.0.4",
"jsonlint": "^1.6.3",
"lint-staged": "^12.3.4",
"node-fetch": "^3.2.3",
"prettier": "^2.5.1",
"purgecss-webpack-plugin": "^4.1.3"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}