-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "flast-server",
"version": "1.0.0",
"packageManager": "[email protected]",
"license": "GPL-3.0-only",
"author": {
"name": "Aoichaan0513",
"email": "[email protected]",
"url": "https://aoichaan0513.jp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FascodeNet/flast-server.git"
},
"main": "build/main.js",
"scripts": {
"start": "node .",
"build": "webpack",
"watch": "webpack --watch",
"dev": "npm run build && npm run start",
"deploy": "npm run build && vercel --prod"
},
"dependencies": {
"@prisma/client": "4.3.0",
"bcrypt": "5.0.1",
"cors": "2.8.5",
"date-fns": "2.29.2",
"express": "4.18.1",
"express-validator": "6.14.2",
"helmet": "6.0.0",
"jsonwebtoken": "9.0.0"
},
"devDependencies": {
"@types/bcrypt": "5.0.0",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jsonwebtoken": "8.5.9",
"@types/node": "18.7.14",
"prisma": "4.3.0",
"ts-loader": "9.3.1",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"typescript": "4.8.2",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
}
}