-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.79 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
99
{
"name": "students-api",
"version": "1.0.0",
"description": "OSU Students API",
"homepage": "https://github.com/osu-mist/students-api#readme",
"bugs": {
"url": "https://github.com/osu-mist/students-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osu-mist/students-api.git"
},
"license": "AGPL-3.0",
"author": "osu-mist",
"main": "dist/app.js",
"scripts": {
"babel": "gulp babel",
"build": "gulp build",
"dev": "nodemon -i dist/ -x 'npm run babel && npm start'",
"lint": "gulp lint",
"start": "pm2-runtime dist/app.js --no-auto-exit",
"test": "gulp test",
"coverage": "nyc --reporter=lcov --reporter=text gulp test",
"typecheck": "gulp typecheck"
},
"pre-commit": [
"lint",
"typecheck",
"babel"
],
"dependencies": {
"@babel/runtime": "^7.5.5",
"body-parser": "^1.19.0",
"compose-middleware": "^5.0.1",
"config": "^3.2.2",
"deasync": "^0.1.15",
"decode-uri-component": "^0.2.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-openapi": "^5.0.0",
"express-winston": "^3.3.0",
"js-yaml": "^3.13.1",
"jsonapi-serializer": "^3.6.5",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"moment-timezone": "^0.5.23",
"oracledb": "^4.1.0",
"pm2": "^4.5.6",
"query-string": "^6.8.2",
"simple-git": "^1.124.0",
"source-map-support": "^0.5.13",
"swagger-parser": "^8.0.0",
"uuid": "^3.3.3",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.8.6",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"aws-sdk": "^2.516.0",
"babel-eslint": "^10.0.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-module-resolver": "^3.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"chai-exclude": "^2.0.2",
"del": "^5.0.0",
"eslint": "^6.2.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^15.8.3",
"flow-bin": "^0.106.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^7.0.1",
"gulp-run": "^1.7.1",
"gulp-sourcemaps": "^2.6.5",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"sinon": "^7.4.1",
"sinon-chai": "^3.3.0",
"randomatic": "^3.1.1"
},
"engines": {
"node": "^10.13"
}
}