-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.88 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
51
52
53
{
"name": "soasec_project",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"type": "module",
"scripts": {
"build": "build_sub_project() { rm -rf ./dist/$1 && npx tsc && ( find . -wholename \"$1/*.ejs\" | xargs --no-run-if-empty cp --parents -t ./dist ) ; } ; build_sub_project",
"client": "npm run build ./client && node --es-module-specifier-resolution=node -r dotenv/config dist/client/index.js dotenv_config_path=./client/.env",
"auth_server": "npm run build ./auth_server && node --es-module-specifier-resolution=node -r dotenv/config dist/auth_server/index.js dotenv_config_path=./auth_server/.env",
"resource_server": "npm run build ./resource_server && node --es-module-specifier-resolution=node -r dotenv/config dist/resource_server/index.js dotenv_config_path=./resource_server/.env"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/marco-luzzara/SOASec-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/marco-luzzara/SOASec-project/issues"
},
"homepage": "https://github.com/marco-luzzara/SOASec-project#readme",
"dependencies": {
"@types/uuid": "^9.0.1",
"argon2": "^0.30.3",
"axios": "^1.3.4",
"base64url": "^3.0.1",
"connect-redis": "^7.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"exit-hook": "^3.2.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fp-ts": "^2.13.1",
"io-ts": "^2.2.20",
"jsonwebtoken": "^9.0.0",
"mongodb": "5.0",
"morgan-body": "^2.6.8",
"redis": "^4.6.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.6",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.14.2",
"typescript": "^4.9.5"
}
}