-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 1.07 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
{
"name": "heydari",
"version": "0.5.20",
"type": "module",
"scripts": {
"admin:start": "vite --host",
"admin:build": "vite build",
"web": "concurrently \"npm:web:style\" \"npm:web:script\" ",
"web:watch": "concurrently \"npm:web:style:watch\" \"npm:web:script:watch\" ",
"web:style": "sass web/style:static/style -s compressed",
"web:script": "webpack",
"web:style:watch": "sass web/style:static/style -w -c",
"web:script:watch": "webpack --watch"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.14.2",
"concurrently": "^9.0.1",
"sass": "^1.77.4",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vite-plugin-solid": "^2.10.2",
"vite-tsconfig-paths": "^4.3.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@solidjs/router": "^0.13.5",
"@splinetool/runtime": "^1.5.5",
"solid-js": "^1.8.17"
}
}