-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 KB
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
{
"name": "@apps/app",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"dev": "concurrently \"pnpm css:watch\" \"tsx watch src/index.ts\"",
"css:build": "pnpm exec tailwindcss -i ./src/css/input.css -o ./public/styles.css",
"css:watch": "pnpm exec tailwindcss -i ./src/css/input.css -o ./public/styles.css --watch",
"build": "pnpm css:build && tsc -p tsconfig.json",
"start": "node dist/index.js"
},
"dependencies": {
"@apps/shared": "workspace:*",
"cookie-parser": "^1.4.7",
"dotenv": "^17.3.1",
"ejs": "^4.0.1",
"express": "^5.2.1",
"jose": "^6.2.1",
"openid-client": "^6.8.2",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"undici": "^7.22.0"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.1",
"@types/cookie-parser": "^1.4.10",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.6",
"@types/node": "^25.3.3",
"concurrently": "^9.2.1",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}