-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "htmx-alpine-tailwindcss",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"dev:app": "nodemon",
"dev:tailwind": "npx tailwindcss -i ./public/css/tailwind.css -o ./public/styles.css --watch",
"dev": "concurrently \"npm run dev:app\" \"npm run dev:tailwind\"",
"start": "NODE_ENV=production nodemon"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-hbs": "^2.4.0",
"express-session": "^1.17.3",
"highlight.js": "^11.7.0",
"jsonwebtoken": "^9.0.0",
"node-fetch": "^3.3.0",
"nodemon": "^2.0.20",
"useful-handlebars-helpers": "^0.12.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.5",
"@types/node": "^18.13.0",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"tailwindcss": "^3.2.4",
"tslint": "^6.1.3",
"typescript": "^4.9.5"
}
}