-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "lostelk-node",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server:dev": "tsc-watch --onSuccess \"node dist/main.js\"",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [],
"author": "lostElk",
"license": "ISC",
"description": "LostElk服务端应用",
"dependencies": {
"bcrypt": "^4.0.1",
"dayjs": "^1.10.6",
"express": "^4.17.1",
"jimp": "^0.10.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"multer": "^1.4.2",
"mysql2": "^2.3.0",
"nodemailer": "^6.6.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.3",
"@types/jsonwebtoken": "^8.3.8",
"@types/lodash": "^4.14.172",
"@types/multer": "^1.4.2",
"@types/node": "^16.6.0",
"@types/nodemailer": "^6.4.4",
"@types/uuid": "^8.3.1",
"dotenv": "^8.2.0",
"prettier": "1.19.1",
"tsc-watch": "^4.2.3",
"typescript": "^3.8.3"
}
}