-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "koa-starter",
"version": "0.0.1",
"description": "A simple starter with koa2 and more.",
"main": "app.js",
"scripts": {
"start": "pm2 start process.yml --env production --name app -i MAX",
"logs": "pm2 logs app",
"stop": "pm2 delete app",
"dev": "NODE_ENV=development node devServer.js",
"dev-pm2": "pm2 start process.yml --env development --name app -i 0",
"test": "standard --fix && NODE_ENV=test mocha -b --delay --no-warnings"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/knowlet/koa-starter.git"
},
"keywords": [
"koa",
"http2",
"starter"
],
"author": "knowlet",
"license": "MIT",
"bugs": {
"url": "https://github.com/knowlet/koa-starter/issues"
},
"homepage": "https://github.com/knowlet/koa-starter#readme",
"devDependencies": {
"chokidar": "^2.0.3",
"mocha": "^8.4.0",
"sequelize-cli": "^6.2.0",
"standard": "^11.0.1",
"supertest": "^3.0.0"
},
"dependencies": {
"bcrypt": "^5.0.1",
"ejs": "^2.6.1",
"koa": "^2.5.1",
"koa-better-router": "^2.1.1",
"koa-bodyparser": "^4.2.0",
"koa-helmet": "^4.0.0",
"koa-session": "^5.8.1",
"koa-static": "^4.0.2",
"koa-views": "^6.1.4",
"mysql2": "^1.5.3",
"pm2": "^4.5.6",
"require-all": "^2.2.0",
"sequelize": "^5.15.1",
"uuid": "^3.2.1"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"requireController",
"run"
],
"ignore": [
"/public/",
"/views/"
]
}
}