-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
28 lines (28 loc) · 1006 Bytes
/
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
{
"name": "zio-scalajs-stack",
"description": "Simple ZIO-ScalaJS Full Stack App",
"author": "Carlos Eduardo de Paula",
"license": "MIT",
"version": "0.0.1",
"dependencies": {
"jsdom": "^25.0.1"
},
"scripts": {
"testall": "./mill __.test",
"lint": "./mill lint",
"deps": "./mill deps",
"build": "./node_modules/.bin/vite build && echo 'Build complete on ./dist'",
"preview": "./node_modules/.bin/vite preview",
"start": "./mill backend.runBackground && ./node_modules/.bin/vite",
"stop": "./mill clean backend.runBackground",
"dev": "./node_modules/.bin/vite",
"testfe": "./mill frontend.test",
"watchfe": "./mill -w frontend.test",
"watchbe": "bash -c \"trap 'mill clean backend.runBackground' EXIT; mill -w backend.runBackground\"",
"cleanall": "rm -rf .bloop .vscode .metals .bsp out target project/.bloop project/{project,.bloop,target} node_modules dist"
},
"devDependencies": {
"vite": "^6.0.3",
"sass": "^1.83.0"
}
}