-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
84 lines (84 loc) · 2.2 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
{
"name": "node-api",
"version": "1.0.0",
"private": true,
"description": "The API for the Society of Software Engineers",
"contributors": [
{
"name": "Kristen Mills",
"email": "[email protected]"
},
{
"name": "Bill Dybas",
"email": "[email protected]"
},
{
"name": "Gavriel R-H",
"email": "[email protected]"
}
],
"main": "app.js",
"scripts": {
"start": "babel-node bin/www",
"watch": "nodemon --exec babel-node bin/www",
"keygen": "babel-node ./keygen.js",
"bootstrap": "babel-node ./bootstrap/init.js",
"lint": "eslint .",
"test": "cross-env NODE_ENV=test nyc mocha --require babel-core/register --timeout 5000 test/index.js test/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/rit-sse/node-api"
},
"author": "Society of Software Engineers",
"license": "MIT",
"bugs": {
"url": "https://github.com/rit-sse/node-api/issues"
},
"homepage": "https://github.com/rit-sse/node-api",
"dependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.24.1",
"bluebird": "^3.5.4",
"body-parser": "^1.13.3",
"cors": "^2.7.1",
"ejs": "^2.5.7",
"express": "^4.13.3",
"express-jwt": "^5.3.0",
"googleapis": "^2.1.3",
"jsonwebtoken": "^8.5.1",
"keypair": "^1.0.0",
"mime": "^2.4.2",
"moment": "^2.24.0",
"moment-range": "^3.1.0",
"moment-timezone": "^0.5.14",
"morgan": "^1.9.1",
"nconf": "^0.10.0",
"nodemailer": "^6.1.1",
"nodemailer-mailgun-transport": "^1.4.0",
"pg": "^7.0.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.21.5",
"sqlite3": "^4.0.6",
"umzug": "^1.6.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^3.19.0",
"eslint-config-sse": "rit-sse/eslint",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"heml": "^1.1.3",
"mocha": "^6.1.4",
"nodemon": "^1.18.11",
"nyc": "^14.0.0",
"sequelize-cli": "^5.4.0",
"supertest": "^4.0.2"
}
}