-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (46 loc) · 1.66 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
45
46
47
{
"private": true,
"scripts": {
"prestart": "dotnet tool restore",
"start": "cross-os start",
"prebuild": "dotnet tool restore",
"build": "dotnet fable ./src/FuncasterStudio.Client --outDir ./.fable-build && webpack"
},
"cross-os": {
"start": {
"darwin": "NODE_ENV=development dotnet fable watch ./src/FuncasterStudio.Client --outDir ./.fable-build --run webpack serve",
"linux": "NODE_ENV=development dotnet fable watch ./src/FuncasterStudio.Client --outDir ./.fable-build --run webpack serve",
"win32": "set NODE_ENV=development& dotnet fable watch ./src/FuncasterStudio.Client --outDir ./.fable-build --run webpack serve"
}
},
"devDependencies": {
"autoprefixer":"^10.4.0",
"copy-webpack-plugin": "^9.0.1",
"core-js": "^3.16.1",
"cross-os": "^1.4.0",
"css-loader": "^6.2.0",
"cssnano": "^5.0.10",
"dotenv-webpack": "^7.0.3",
"graceful-fs": "^4.2.8",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.0",
"postcss":"^8.3.11",
"postcss-loader":"^6.2.0",
"postcss-import": "^14.0.2",
"react-dom": "^17.0.2",
"remotedev": "^0.2.9",
"resolve-url-loader":"^4.0.0",
"style-loader": "^3.2.1",
"source-map-loader": "^3.0.0",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"react": "^17.0.2",
"tailwindcss":"^3.0.1",
"daisyui": "^1.16.2",
"@fortawesome/fontawesome-free": "^5.15.4",
"react-hot-toast":"^2.2.0"
}
}