-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 847 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 847 Bytes
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
{
"name": "simple-node-htmx-react",
"version": "1.0.0",
"description": "Simple music player server",
"main": "src/main.js",
"type": "module",
"scripts": {
"start": "node src/main.js",
"dev": "node --watch src/main.js"
},
"keywords": [
"backend",
"nodejs",
"htmx",
"react"
],
"author": "Lance Turbes",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.2",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"prettier": "^3.2.2",
"typescript": "^5.3.3"
},
"imports": {
"#view/*": "./src/view/*",
"#music": "./public/music",
"#util/*": "./src/util/*"
}
}