-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.12 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
92
93
94
95
96
97
98
99
{
"name": "self-enrollment",
"scripts": {
"lint": "eslint . --ignore-path .gitignore --ext .js,.ts",
"lint:staged": "eslint --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"build": "tsc",
"start": "tsc-watch --onSuccess \"node lib/index.js\"",
"test": "jest --watchAll=false --verbose=false",
"test:watch": "jest --watchAll --verbose=false",
"setEnv": "export $(grep -v '^#' ./.env)",
"knex:migrate:make": "knex --knexfile src/database/knexfile.ts -x ts migrate:make",
"knex:migrate:latest": "knex --knexfile src/database/knexfile.ts migrate:latest",
"knex:migrate:rollback": "knex --knexfile src/database/knexfile.ts migrate:rollback",
"knex:migrate:up": "knex --knexfile src/database/knexfile.ts migrate:up",
"knex:migrate:down": "knex --knexfile src/database/knexfile.ts migrate:down",
"knex:seed:make": "knex --knexfile src/database/knexfile.ts seed:make",
"knex:seed:run": "knex --knexfile src/database/knexfile.ts seed:run"
},
"engines": {
"node": "12"
},
"main": "lib/index.js",
"dependencies": {
"@hapi/joi": "^15.1.0",
"@microsoft/microsoft-graph-client": "^2.0.0",
"@octokit/auth-app": "^2.4.5",
"@octokit/auth-oauth-app": "^3.0.3",
"@octokit/rest": "^17.9.2",
"@overnightjs/core": "^1.6.15",
"@overnightjs/logger": "^1.1.10",
"@types/bunyan": "^1.8.6",
"@types/node": "^12.6.8",
"@types/sinon": "^7.0.13",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"celebrate": "^10.0.1",
"connect-session-knex": "^1.6.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"deep-object-diff": "^1.1.0",
"dotenv": "^8.2.0",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"express-session": "^1.17.0",
"http-status-codes": "^1.4.0",
"isomorphic-fetch": "^2.2.1",
"knex": "^0.20.11",
"mssql": "^6.2.0",
"passport": "^0.4.1",
"passport-azure-ad": "^4.2.1",
"pg": "^8.2.1",
"querystring": "^0.2.0",
"sinon": "^7.3.2",
"uuid": "^8.1.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.5",
"@types/express": "^4.17.0",
"@types/express-session": "^1.17.0",
"@types/hapi__joi": "^15.0.2",
"@types/jest": "^24.0.15",
"@types/passport": "^1.0.3",
"@types/passport-azure-ad": "^4.0.4",
"@types/supertest": "^2.0.8",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jsdoc": "^15.6.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"lint-staged": "^9.1.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.6.2",
"tsc-watch": "^4.2.3",
"typescript": "^3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"private": true,
"lint-staged": {
"*.{js,ts}": [
"npm run lint:staged"
]
}
}