-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "super-crm",
"version": "1.0.0",
"author": {
"name": "rui",
"email": "z17520@126.com"
},
"main": "server.js",
"license": "MIT",
"type": "module",
"scripts": {
"start:dev": "NODE_ENV=dev node server.js",
"start:production": "NODE_ENV=production node server.js"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/formbody": "^7.4.0",
"@fastify/multipart": "^7.6.0",
"@fastify/session": "^10.3.0",
"@fastify/static": "^6.10.1",
"@fastify/view": "^7.4.1",
"@fastify/websocket": "^8.0.0",
"@prisma/client": "^4.13.0",
"bcrypt": "^5.0.1",
"chalk": "^5.0.1",
"dayjs": "^1.11.5",
"dotenv": "^16.0.2",
"fastify": "^4.17.0",
"html-minifier": "^4.0.0",
"node-cron": "^3.0.2",
"node-fetch": "^3.2.3",
"nunjucks": "^3.2.3",
"pino-pretty": "^9.1.0"
},
"devDependencies": {
"chokidar": "^3.5.3",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-uglify": "^3.0.2",
"gulp-vinyl-zip": "^2.5.0",
"prisma": "^4.13.0"
}
}