-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
package.json
70 lines (70 loc) · 2.34 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
{
"name": "jobboard",
"version": "0.2.0",
"private": true,
"type": "module",
"homepage": ".",
"dependencies": {
"leaflet": "^1.9.4",
"react": "^18.3.1",
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
"react-lazyload": "github:twobin/react-lazyload",
"react-leaflet": "^4.2.1",
"react-scripts": "^5.0.1",
"react-search-input": "^0.11.3",
"tachyons": "^4.12.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 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",
"@fullhuman/postcss-purgecss": "^6.0.0",
"@types/jest": "^29.5.12",
"@types/leaflet": "^1.9.12",
"@types/node": "^20.14.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-lazyload": "^3.2.3",
"@types/webfontloader": "^1.6.38",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"jsonlint": "^1.6.3",
"lint-staged": "^15.2.7",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"typescript": "^4.9.5"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"volta": {
"node": "20.15.0"
}
}