-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.53 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
{
"engines": {
"node": "10.x.x"
},
"name": "digitalcv-backend",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"debug": "cd C:/Dev/digitalcv-backend/dist && node --inspect start.js",
"start": "node start.js",
"up": "node migration.js up",
"down": "node migration.js down",
"refresh": "node migration.js refresh",
"create-migration": "node migration.js add migration",
"build": "npx babel src --out-dir dist --copy-files --include-dotfiles --source-root start.js --source-maps --env-name NODE_ENV",
"build-dev": "npx babel src --out-dir dist --copy-files --include-dotfiles --source-root start.js --source-maps --env-name development --watch"
},
"author": "Daniel Nash",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@google-cloud/debug-agent": "^3.0.1",
"@google-cloud/logging-winston": "^0.10.2",
"@google-cloud/storage": "^2.3.1",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"mysql": "^2.16.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"promise": "^8.0.2",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"eslint": "^5.9.0",
"mysql-migrations": "^1.0.6"
}
}