-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.28 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.28 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
{
"name": "lin-tree-solver",
"homepage": "https://lin-tree-solver.adambcomer.com",
"license": "Apache-2.0",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@heroui/accordion": "2.2.29",
"@heroui/button": "2.2.32",
"@heroui/card": "2.2.28",
"@heroui/chip": "2.2.25",
"@heroui/input": "2.4.33",
"@heroui/spinner": "2.2.29",
"@heroui/system": "2.4.28",
"@heroui/theme": "2.4.26",
"@heroui/toast": "2.0.22",
"@heroui/tooltip": "2.2.29",
"@tailwindcss/vite": "4.2.1",
"@vitejs/plugin-react": "6.0.1",
"better-sqlite3": "12.8.0",
"buffer": "6.0.3",
"compression": "1.8.1",
"express": "5.2.1",
"fontfaceobserver": "2.3.0",
"framer-motion": "12.36.0",
"nearley": "2.20.1",
"protobufjs": "8.0.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwindcss": "4.2.1",
"vike": "0.4.255",
"vike-react": "0.6.21",
"vike-server": "1.0.25",
"vite": "8.0.0"
},
"devDependencies": {
"@eslint/compat": "2.0.3",
"@eslint/js": "10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/compression": "1.8.1",
"@types/express": "5.0.6",
"@types/fontfaceobserver": "2.1.3",
"@types/nearley": "2.11.5",
"@types/node": "24.10.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-react": "7.37.5",
"prettier": "3.8.1",
"protobufjs-cli": "2.0.0",
"source-map-explorer": "2.5.3",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0"
},
"scripts": {
"dev": "vike dev",
"build": "vike build",
"preview": "vike build && NODE_ENV=production DATABASE_PATH='./database.sqlite' node dist/server/index.js",
"proto": "pbjs -t static-module -w es6 --es6 -o repo/proto/bundle.js repo/proto/sentence.proto repo/proto/ruleset.proto && pbts -o repo/proto/bundle.d.ts repo/proto/bundle.js",
"lint:check": "eslint .",
"lint": "eslint --fix .",
"format:check": "prettier --check .",
"format": "prettier --write .",
"analyze": "source-map-explorer 'dist/static/*.js'"
},
"packageManager": "pnpm@9.3.0+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631"
}