-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.67 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
{
"name": "rest-demo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:ui": "vite",
"dev:server": "tsc -p ./tsconfig.server.json; node ./dist-server/server.js",
"start": "NODE_ENV=production node ./dist-server/server.js",
"build": "tsc; tsc -p ./tsconfig.server.json; vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@fastify/cors": "^8.3.0",
"@fastify/static": "^6.11.0",
"@vlcn.io/crsqlite": "0.16.1",
"@vlcn.io/crsqlite-wasm": "0.16.0",
"@vlcn.io/react": "3.1.0",
"@vlcn.io/rx-tbl": "0.15.0",
"@vlcn.io/ws-common": "0.2.0",
"@vlcn.io/xplat-api": "0.15.0",
"@vlcn.io/id": "0.1.0",
"better-sqlite3": "^8.3.0",
"fastify": "^4.22.2",
"fastify-plugin": "^4.5.1",
"fastify-raw-body": "^4.2.2",
"fluent-json-schema": "^4.1.1",
"javascript-time-ago": "^2.5.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-table": "^7.8.0",
"react-time-ago": "^7.2.1",
"styled-components": "^6.0.7"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.4",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-table": "^7.7.15",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"typescript": "^5.0.2",
"vite": "^4.3.9"
}
}