-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.71 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.71 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
{
"type": "module",
"scripts": {
"dev": "npm run server:dev",
"prod": "npm run lint && npm run build && npm run server:prod",
"build": "vite build",
"server": "node --experimental-specifier-resolution=node ./register ./server/index.ts",
"server:dev": "nodemon",
"server:prod": "cross-env NODE_ENV=production npm run server",
"alambic": "node --experimental-specifier-resolution=node ./register ./alambic",
"lint": "eslint . --max-warnings 0"
},
"dependencies": {
"@fastify/caching": "^8.3.0",
"@fastify/compress": "^7.0.3",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/multipart": "^8.2.0",
"@fastify/session": "^10.7.2",
"@fastify/static": "^7.0.3",
"@prisma/client": "^5.13.0",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-react": "^4.2.1",
"axios": "^1.6.8",
"chalk": "^5.3.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"fastify": "^4.26.2",
"fastify-fingerprint": "^1.4.1",
"nodemon": "^3.1.0",
"prisma": "^5.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"vike": "^0.4.171",
"vite": "^5.0.10"
},
"devDependencies": {
"@types/node": "^20.12.7",
"eslint-config-prettier": "9.1.0",
"prettier": "3.2.5",
"tsconfig-paths": "^4.2.0"
}
}