-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 987 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
39
{
"name": "express-template",
"version": "1.0.0",
"description": "node.js 进行Web开发模板",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/app.js",
"start": "node ./src/app.js",
"lint": "eslint src --fix",
"test": "jest _tests_"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ATQQ/express-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ATQQ/express-template/issues"
},
"homepage": "https://github.com/ATQQ/express-template#readme",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-todo-ddl": "^1.1.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.6.4",
"mysql": "^2.18.1"
}
}