-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
{
"name": "koa-framework",
"version": "1.0.0",
"description": "koa-framework",
"main": "main.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon main.js --delay 1",
"prod": "cross-env NODE_ENV=production node main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangxing218/koa-framework.git"
},
"keywords": [
"koa",
"framework",
"egg"
],
"author": "wangxing218",
"license": "ISC",
"homepage": "https://github.com/wangxing218/koa-framework#readme",
"dependencies": {
"cross-env": "^7.0.3",
"ioredis": "^4.19.4",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-helmet": "^6.0.0",
"koa-nunjucks-2": "^3.0.2",
"koa-router": "^10.0.0",
"koa-session": "^6.1.0",
"koa-static": "^5.0.0",
"log4js": "^6.3.0",
"mysql": "^2.18.1",
"sqlite3": "^5.0.1"
},
"devDependencies": {
"nodemon": "^2.0.7"
},
"nodemonConfig": {
"ignore": [
"runtime",
"public",
"node_modules"
],
"ext": "js"
}
}