-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "auth.godbolt.org",
"version": "0.0.1",
"description": "Authentication for Compiler Explorer",
"main": "src/app.ts",
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "ts-node-dev -r dotenv/config --respawn --transpile-only src/server.ts",
"test": "jest --coverage --verbose",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/compiler-explorer/auth.git"
},
"author": "",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/compiler-explorer/auth/issues"
},
"homepage": "https://github.com/compiler-explorer/auth#readme",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/eslint": "^7.28.0",
"@types/express-session": "^1.17.3",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.25",
"@types/passport": "^1.0.6",
"@types/passport-google-oauth2": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.31.0",
"ts-loader": "^8.0.15",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/lusca": "^1.6.2",
"@types/supertest": "^2.0.11",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jest": "^26.6.3",
"lusca": "^1.6.1",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-google-oauth2": "^0.2.0",
"pug": "^3.0.0",
"supertest": "^6.1.4",
"ts-jest": "^26.5.6"
}
}