-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1004 Bytes
/
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
{
"name": "bcliquor-browser",
"version": "0.1.0",
"dependencies": {
"bulma": "^0.9.4",
"fuse.js": "^6.6.2",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"scripts": {
"start": "vite",
"build": "rm -rf dist/ && vite build",
"generate": "cd src/json/ && bun run ../../scripts/scrape.js && quicktype -l typescript categories.json --just-types --alphabetize-properties > categories.d.ts && quicktype -l typescript data.json --just-types --alphabetize-properties > data.d.ts && quicktype -l typescript metadata.json --just-types --alphabetize-properties > metadata.d.ts",
"fetch": "cd src/json/ && bun run ../../scripts/scrape.js"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"quicktype": "^15.0.261",
"react-refresh": "0.10.0",
"typescript": "latest",
"vite": "^4.4.9"
}
}