-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.26 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.26 KB
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": {
"leaflet": "^1.9.4",
"react": "^19.2.3",
"react-countup": "^6.5.3",
"react-dom": "^19.2.3",
"react-leaflet": "^5.0.0",
"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": "vite",
"build": "npm-run-all build-css build-js",
"build-css": "sass ./src",
"build-js": "vite 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 && vitest",
"deploy": "gh-pages -d build",
"aggregate-json": "node scripts/aggregate-json.mjs",
"countries-json": "node scripts/countries-json.mjs",
"serve": "vite preview"
},
"devDependencies": {
"@babel/helper-call-delegate": "^7.12.13",
"@fullhuman/postcss-purgecss": "^7.0.2",
"@types/jest": "^30.0.0",
"@types/leaflet": "^1.9.21",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-lazyload": "^3.2.3",
"@types/webfontloader": "^1.6.38",
"@vitejs/plugin-react": "^5.1.2",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"jsonlint": "^1.6.3",
"lint-staged": "^16.2.7",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4",
"sass": "^1.97.1",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vitest": "^4.0.16"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"volta": {
"node": "20.15.0"
}
}