-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.48 KB
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
{
"name": "oauth-node",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"dev": "nodemon --watch \"src/\" --exec \"ts-node src/index.ts\" -e ts",
"debug": "DEBUG=oidc-provider:* nodemon --watch \"src/\" --exec \"ts-node src/index.ts\" -e ts",
"test": "jest",
"build": "tsc",
"prod": "npm run build && node dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"ioredis": "^4.14.1",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"morgan": "^1.9.1",
"oidc-provider": "^6.17.3",
"pg": "^7.14.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.2",
"sequelize-cli": "^5.5.1",
"sqlite3": "^4.1.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.29",
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.2",
"@types/helmet": "0.0.45",
"@types/ioredis": "^4.14.1",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.149",
"@types/lru-cache": "^5.1.0",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.16",
"@types/pg": "^7.11.2",
"@types/sequelize": "^4.28.8",
"@types/supertest": "^2.0.8",
"@types/validator": "^12.0.1",
"jest": "^24.9.0",
"node-jose": "^1.1.3",
"nodemon": "^2.0.1",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
}
}