-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.84 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
{
"name": "endor",
"description": "The backend web service for Yggdrasil.",
"version": "0.0.0",
"private": false,
"main": "src/index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"test": "npm run build && nyc mocha",
"lint": "eslint src/. --ext .js",
"build": "babel src --out-dir dist",
"prepublishOnly": "npm run build",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"createDB": "echo \"DROP SCHEMA IF EXISTS \\`hammer_endor\\`; CREATE SCHEMA IF NOT EXISTS \\`hammer_endor\\` DEFAULT CHARACTER SET utf8 ;\" | mysql -u root -p",
"initDB": "npm run build && node dist/db/init_database.js",
"importTestData": "npm run build && node dist/db/import_test_data.js",
"productionStart": "apidoc -i src/ -o docs/ && npm start",
"initTestDB": "npm run createDB && npm run initDB && npm run importTestData",
"addProjectsToTestUser": "npm run build && node dist/db/add_projects_to_test_user.js"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/hammer-io/endor.git"
},
"authors": [
"Erica Clark <[email protected]",
"Jack Meyer <[email protected]> (www.jackcmeyer.com)",
"Nischay Venkatram <[email protected]> (www.nischayv.com)",
"Nathan Karasch <[email protected]> (krashdev.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hammer-io/endor/issues"
},
"homepage": "https://github.com/hammer-io/endor#readme",
"devDependencies": {
"@types/mocha": "^2.2.48",
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"codecov": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "12.0.1",
"eslint-plugin-import": "2.7.0",
"nyc": "^13.0.0",
"pre-commit": "^1.2.2",
"sqlite3": "^3.1.13"
},
"dependencies": {
"@octokit/rest": "^14.0.8",
"adm-zip": "^0.4.7",
"apidoc": "^0.17.6",
"bcrypt": "^1.0.3",
"body-parser": "1.18.2",
"chai-http": "^4.0.0",
"config": "^1.30.0",
"connect-session-sequelize": "^5.2.1",
"cookie-parser": "1.4.3",
"cors": "^2.8.4",
"debug": "2.6.9",
"del": "^3.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"express-validator": "4.3.0",
"fs-extra": "^5.0.0",
"helmet": "3.9.0",
"joi": "^13.4.0",
"mocha": "^5.2.0",
"morgan": "1.9.0",
"mysql2": "^1.5.3",
"node-fetch": "^2.1.2",
"nodemailer": "^4.6.4",
"oauth2orize": "^1.11.0",
"passport": "0.4.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"sequelize": "^4.35.2",
"skadi-hammerio": "0.0.1",
"tyr-cli": "^0.6.1",
"uid-safe": "^2.1.5",
"validator": "^9.4.1",
"winston": "^3.0.0-rc3"
},
"engines": {
"node": ">= 6"
}
}