-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "odsl-backend",
"version": "1.0.0",
"description": "Backend odsl",
"main": "src/index.ts",
"source": "src/index.ts",
"scripts": {
"dev": "node --inspect=5859 -r ts-node/register ./src/index.ts",
"build": "tsc",
"lint": "eslint src/**/*.ts --max-warnings 0",
"dev:watch": "nodemon"
},
"author": "Xavier Hoffmann",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}