-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.32 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
{
"name": "tape",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon -r dotenv/config ./server | bunyan",
"db": "node -r dotenv/config ./server/script/sequelize",
"db:reset": "npm run db drop && npm run db create && npm run db migrate",
"db:seed": "npm run db seed:all",
"add:integration": "node -r dotenv/config ./server/script/add-integration.js",
"profiles:aggregate-stats": "node -r dotenv/config ./server/script/aggregate-stats.js",
"lint": "eslint --ext .js .",
"debug": "nodemon --inspect-brk -r dotenv/config ./server | bunyan",
"start": "NODE_ENV=production node -r dotenv/config ./server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExtensionEngine/tape.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/ExtensionEngine/tape/issues"
},
"homepage": "https://github.com/ExtensionEngine/tape#readme",
"devDependencies": {
"@babel/core": "^7.1.0",
"@extensionengine/eslint-config": "^1.0.1",
"babel-eslint": "^10.0.3",
"del-cli": "^1.1.0",
"emoji-strip": "^1.0.1",
"eslint": "^6.5.1",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"nodemon": "^1.18.6",
"sequelize-cli": "^5.5.0",
"split2": "^3.0.0"
},
"dependencies": {
"bcrypt": "^3.0.1",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"bunyan": "^1.8.13",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"emailjs": "^2.2.0",
"express": "^4.16.3",
"express-async-errors": "^3.0.0",
"express-history-api-fallback": "^2.2.1",
"helmet": "^3.21.1",
"http-errors": "^1.7.1",
"http-status": "^1.2.0",
"inquirer": "^6.2.0",
"joi": "^13.7.0",
"jsend": "^1.0.2",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.19",
"morgan": "^1.9.1",
"nocache": "^2.0.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pg": "^7.12.1",
"safe-require": "^1.0.3",
"sequelize": "^5.16.0",
"umzug": "^2.1.0",
"url-join": "^4.0.0"
},
"engines": {
"node": ">= 8.11.0",
"npm": ">= 5.8.0"
}
}