-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 KB
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": "demo02",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node bin/www",
"dev": "export NODE_ENV='test' && ./node_modules/.bin/nodemon bin/www",
"prd": "pm2 start bin/www",
"lint": "eslint --ext .js ./",
"lint:fix": "eslint --fix --ext .js ./"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"debug": "^4.1.1",
"ejs": "^2.7.4",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-onerror": "^4.1.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.0",
"mysql2": "^2.1.0",
"node-uuid": "^1.4.8",
"sequelize": "^5.21.5"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^1.19.1"
}
}