-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "htmx_test",
"version": "2.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tailwind": "tailwindcss -i src/backend/index.css -o public/index.css",
"tailwind:watch": "tailwindcss -i src/backend/index.css -o public/index.css --watch",
"server": "npm run tailwind & nodemon -e js,mjs,cjs,json,html src/backend/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"node-match-path": "^0.6.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"nodemon": "^3.0.1",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-tailwindcss": "~0.4.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
}
}