-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 964 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
35
{
"description": "Express Auth example app",
"engines": {
"node": ">=20.11.0"
},
"type": "module",
"private": true,
"scripts": {
"start": "node dist/server.js",
"clean": "rm -rf dist",
"build": "pnpm build:ts && pnpm build:css",
"build:ts": "tsc",
"build:css": "tailwindcss -i ./public/css/style.css -o ./public/css/output.css",
"dev": "tsx watch --env-file=.env src/server.ts & pnpm build:css -w",
"lint": "eslint src/*.ts --fix",
"prettier": "prettier src/*.ts --write"
},
"author": "Rexford Essilfie <[email protected]>",
"license": "ISC",
"dependencies": {
"@auth/express": "latest",
"express": "^4.19.2",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.7",
"@types/pug": "^2.0.10",
"tsx": "^4.7.0",
"typescript": "5.3.3"
}
}