-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "nice-swa-s",
"version": "1.0.0",
"description": "koa scaffolding template",
"main": "src/index.js",
"scripts": {
"babelRun": "node_modules/.bin/babel-node src/index.js",
"superdev": "supervisor dist/index.js",
"dev": "node dist/index.js",
"webpack": "node_modules/.bin/webpack",
"webpackTest": "NODE_ENV=test node_modules/.bin/webpack",
"devTest": "node dist/index.js",
"webpackProd": "NODE_ENV=production node_modules/.bin/webpack",
"test": "ava",
"nyc": "nyc ava",
"testReport": "nyc report --reporter=html"
},
"ava": {
"files": [
"test/utils/*.test.js",
"test/route/*.test.js",
"test/service/*.test.js",
"test/**.test.js"
],
"source": [
"**/*.{js,jsx}",
"!dist/**/*"
],
"match": [
"*"
],
"failFast": true,
"tap": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QCCS/nice-swa-s.git"
},
"keywords": [
"node",
"babel",
"blog system",
"koa2",
"mysql",
"orm",
"jwt",
"restful",
"pm2",
"sequelize",
"swagger"
],
"author": "zhouli",
"license": "MIT",
"bugs": {
"url": "https://github.com/QCCS/nice-swa-s/issues"
},
"homepage": "https://github.com/QCCS/nice-swa-s#readme",
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chokidar": "^2.0.4",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^5.7.0",
"nyc": "^13.1.0",
"request": "^2.88.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"mysql-backup-db": "^1.0.1",
"ejs": "^2.6.1",
"koa-logger": "^3.2.0",
"jsonwebtoken": "^8.3.0",
"koa": "^2.5.2",
"bcryptjs": "^2.4.3",
"koa-bodyparser": "^4.2.1",
"koa-jwt": "^3.5.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-views": "^6.1.4",
"koa2-file-upload": "^0.1.25",
"koa2-swagger-ui": "^2.9.8",
"mysql": "^2.16.0",
"mysql2": "^1.6.1",
"sequelize": "^4.38.1",
"sequelize-cli": "^4.1.1"
}
}