-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.9 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
{
"name": "turingbackend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js --exec babel-node --host=0.0.0.0",
"build": "webpack --mode production --env.production --progress && scp dist/server.js bethel:/var/www/bethel-backend/ && scp package.json bethel:/var/www/bethel-backend/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.3",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-module-resolver": "^3.2.0",
"nodemon": "^1.18.11",
"regenerator-runtime": "^0.13.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@babel/runtime": "^7.4.3",
"async": "^2.6.2",
"babel-loader": "^8.0.5",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"cryptr": "^4.0.2",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"express-rate-limit": "^3.5.0",
"express-unless": "^0.5.0",
"fs-extra": "^8.1.0",
"graphql": "^14.2.1",
"graphql-type-json": "^0.3.0",
"hashids": "^1.2.2",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"mysql2": "^1.6.5",
"node-cache": "^4.2.0",
"nodemailer": "^6.1.0",
"sequelize": "^5.3.5",
"sha1": "^1.1.1",
"stripe": "^6.30.0"
},
"_moduleAliases": {
"@models": "src/database/models"
}
}