-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) Β· 1.48 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) Β· 1.48 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
{
"name": "flags",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"async": "^2.6.4",
"axios": "^0.21.2",
"cheerio": "^1.0.0-rc.2",
"cli-progress": "^2.1.1",
"color-converter": "^1.4.1",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"prettier": "^2.5.1",
"vite": "^6.0.7",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^2.1.8",
"canvas": "^3.2.3",
"pixelbank": "^0.0.2"
},
"dependencies": {
"@rooks/use-key": "^1.1.0",
"query-string": "^6.14.1",
"react": "^18.3.1",
"react-aria-menubutton": "^6.3.0",
"react-dom": "^18.3.1",
"react-lazy-load-image-component": "^1.5.0",
"react-loading-image": "^0.5.0",
"react-modal": "^3.14.4",
"slugify": "^1.4.5"
},
"engines": {
"node": ">=18"
},
"overrides": {
"react-aria-menubutton": {
"react": "$react",
"react-dom": "$react-dom"
},
"react-loading-image": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"scripts": {
"fetch-data": "node modules/index",
"start": "vite",
"dev": "vite",
"build": "vite build && node ./modules/set-redirects.js",
"preview": "vite preview",
"test": "vitest run"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}