-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.04 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
{
"name": "express-rest-api-starter",
"version": "1.0.0",
"description": "express rest api starter description",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kyhsa93/express-rest-api-starter.git"
},
"keywords": [
"node.js",
"express.js",
"docker"
],
"author": "kyhs9a3",
"license": "ISC",
"bugs": {
"url": "https://github.com/kyhsa93/express-rest-api-starter/issues"
},
"homepage": "https://github.com/kyhsa93/express-rest-api-starter#readme",
"dependencies": {
"aws-sdk": "^2.521.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.20.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"mysql2": "^1.7.0",
"redis": "^2.8.0",
"sequelize": "^5.17.2",
"swagger-ui-express": "^4.0.7",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.3",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0",
"node-mocks-http": "^1.7.6",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"should": "^13.2.3"
},
"scripts": {
"lint": "eslint --fix index.js models routes controllers seeders",
"trans": "./transpile.sh",
"start": "nodemon --exec babel-node -- ./index.js",
"test": "cross-env NODE_ENV=test nyc mocha test/*.spec.js"
}
}