-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
41
42
43
44
{
"name": "songify-custom-widget",
"version": "1.0.0",
"description": "Songify Custom Widget",
"main": "dist/server.js",
"scripts": {
"build-client": "cd client && npm run build",
"build-server": "tsc",
"copy-client-build": "xcopy /s /e /y client\\build dist\\client\\build",
"build": "npm run build-client && npm run build-server && npm run copy-client-build",
"start": "node dist/server.js",
"dev-client": "cd client && npm start",
"dev-server": "ts-node-dev --respawn src/server.ts",
"dev": "concurrently \"npm run dev-client\" \"npm run dev-server\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.21",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"axios": "^1.7.5",
"express": "^4.19.2",
"jimp": "^0.22.12",
"js-yaml": "^4.1.0",
"open": "^10.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"systray2": "^2.1.4",
"tailwindcss": "^2.0.4",
"typescript": "^5.5.4",
"winston": "^3.14.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.4.1",
"@types/node-notifier": "^8.0.5",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
}
}