-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "lott-helper",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/js-go/lottHelper.git",
"scripts": {
"start": "node ./bin/index.js",
"dev": "./node_modules/.bin/nodemon ./bin/index.js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha -t 5000 -c -r ./test/env.js ./src/**/**.test.js --exit",
"test:watch": "NODE_ENV=test ./node_modules/.bin/mocha -t 5000 -c -w -r ./test/env.js ./src/**/**.test.js",
"migrate": "./node_modules/.bin/sequelize db:migrate",
"seed": "./node_modules/.bin/sequelize db:seed:all"
},
"author": "js:go",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"baidu-aip-sdk": "^2.1.0",
"chai-http": "^4.0.0",
"dotenv": "^5.0.1",
"joi": "^13.1.2",
"jsonwebtoken": "^8.2.0",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"mysql2": "^1.5.3",
"qiniu": "^7.1.3",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"sequelize": "^4.37.5",
"sequelize-cli": "^4.0.0",
"winston": "^3.0.0-rc4"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.0.5",
"nodemon": "^1.17.2",
"prettier": "^1.11.1",
"supertest": "^3.0.0"
}
}