-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 901 Bytes
/
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
{
"name": "tim-translator-se",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"build": "tsc",
"start": "node dist/src/server.js",
"watch": "tsc -w",
"dev": "nodemon dist/src/server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^2.30.3",
"axios": "^0.21.4",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"md5": "^2.3.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"nodemon": "^2.0.20",
"qs": "^6.11.0",
"tencentcloud-sdk-nodejs": "^4.0.455"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.14",
"@types/md5": "^2.3.2",
"@types/morgan": "^1.9.3",
"@types/qs": "^6.9.7",
"prisma": "^3.15.2",
"typescript": "^4.8.4"
}
}