-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 915 Bytes
/
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
{
"name": "proconnect-landing-page",
"version": "1.0.0",
"description": "## Lancer ce site localement",
"main": "index.js",
"scripts": {
"build": "npm run buildServer && npm run buildClient",
"buildServer": "tsc",
"buildClient": "cd src/client && npm install && npm run build",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"start:front": "cd src/client && npm run dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/express-session": "^1.18.0",
"@types/node": "^22.9.0",
"concurrently": "^9.1.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"connect-redis": "^7.1.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"ioredis": "^5.4.1",
"express-session": "^1.18.1",
"openid-client": "^5.7.0"
}
}