-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 966 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 966 Bytes
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
{
"name": "todo-nodejs-api",
"version": "1.0.0",
"description": "NodeJS全栈开发之RESTFUL API基于Node.js+Express+Mysql实现后端接口",
"author": "JackChen <278910933@qq.com>",
"main": "index.js",
"dependencies": {
"body-parser": "^1.19.0",
"boom": "^7.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^5.3.3",
"express-validator": "^6.5.0",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1"
},
"devDependencies": {
"crypto": "^1.0.1",
"nodemon": "^2.0.4"
},
"scripts": {
"start": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackchen0120/todo-nodejs-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jackchen0120/todo-nodejs-api/issues"
},
"homepage": "https://github.com/jackchen0120/todo-nodejs-api#readme"
}