-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "auth2",
"version": "1.0.0",
"description": "self-made identity provider",
"author": "Jannik Wibker",
"license": "MIT",
"main": "index.ts",
"dependencies": {
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.37",
"@types/pg": "^7.14.11",
"@types/qrcode": "^1.4.0",
"@types/speakeasy": "^2.0.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fp-ts": "^2.9.5",
"io-ts": "^2.2.16",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"pg": "^8.5.1",
"qrcode": "^1.4.4",
"speakeasy": "^2.0.0",
"ts-brand": "^0.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"scripts": {
"start": "nodemon src/index.ts",
"start:node": "ts-node src/index.ts",
"build": "tsc --project ./",
"lint": "eslint .",
"test": "jest",
"test:cov": "jest --coverage --watchAll"
},
"devDependencies": {
"@babel/core": "^7.13.13",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-jest": "^26.6.3",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7"
}
}