-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.84 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
96
97
98
{
"name": "express-api-skeleton",
"version": "1.0.0",
"description": "Skeleton for Express APIs.",
"homepage": "https://github.com/osu-mist/express-api-skeleton#readme",
"bugs": {
"url": "https://github.com/osu-mist/express-api-skeleton/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osu-mist/express-api-skeleton.git"
},
"license": "AGPL-3.0",
"author": "osu-mist",
"main": "dist/app.js",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text gulp test",
"babel": "gulp babel",
"build": "gulp build",
"dev": "nodemon -e js,yaml,json -i dist/ -i mock-db/ -x 'npm run babel && npm start'",
"lint": "gulp lint",
"start": "pm2-runtime dist/app.js --no-auto-exit",
"test": "gulp test",
"typecheck": "gulp typecheck"
},
"pre-commit": [
"lint",
"typecheck",
"babel"
],
"dependencies": {
"@babel/runtime": "^7.10.3",
"body-parser": "^1.19.0",
"compose-middleware": "^5.0.1",
"config": "^3.3.1",
"deasync": "^0.1.20",
"decode-uri-component": "^0.2.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-openapi": "^6.0.0",
"express-winston": "^4.0.3",
"js-yaml": "^3.14.0",
"jsonapi-serializer": "^3.6.6",
"lodash": "^4.17.21",
"moment": "^2.27.0",
"oracledb": "^4.2.0",
"pm2": "^4.5.6",
"query-string": "^6.13.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"simple-git": "^2.9.0",
"source-map-support": "^0.5.19",
"swagger-parser": "^9.0.1",
"uuid": "^8.1.0",
"winston": "^3.3.2",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-optional-chaining": "^7.10.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-flow": "^7.10.1",
"@babel/register": "^7.8.6",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"aws-sdk": "^2.702.0",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-module-resolver": "^4.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-exclude": "^2.0.2",
"del": "^5.1.0",
"eslint": "^7.3.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-flowtype": "^5.1.3",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsdoc": "^28.0.0",
"flow-bin": "^0.127.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^7.0.2",
"gulp-run": "^1.7.1",
"gulp-sourcemaps": "^2.6.5",
"nodemon": "^2.0.4",
"nyc": "^15.0.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"engines": {
"node": "^10.13"
}
}