-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.15",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.9",
"@types/openid-client": "^3.7.0",
"@types/passport": "^1.0.1",
"concurrently": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"global": "^4.4.0",
"morgan": "^1.9.1",
"openid-client": "^3.8.3",
"passport": "^0.4.0",
"passport-openid": "^0.4.0",
"typescript": "^3.7.2"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.0",
"nodemon": "^1.19.4",
"ts-node": "^8.4.1"
},
"scripts": {
"build": "./node_modules/.bin/tsc --p ./tsconfig.json",
"frontend": "cd frontend && yarn start",
"server": "node --inspect=5858 -r ts-node/register -r dotenv/config ./src/server.ts",
"server:watch": "nodemon",
"dev": "concurrently --kill-others-on-fail \"yarn server:watch\" \"yarn frontend\""
}
}