-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.6 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
48
49
50
51
52
{
"name": "itzmono-vite",
"version": "0.0.0",
"scripts": {
"crate:build": "cd crates && wasm-pack build --target web --release",
"crate:dev": "cd crates && cargo watch -s 'wasm-pack build --target web --dev' -C",
"crate": "pnpm run crate:${MODE:-build}",
"crates:hello": "pnpm run crate hello",
"dev:crates": "MODE=dev run-p crates:*",
"dev:vite": "vite --host",
"dev": "run-p dev:*",
"build:crates": "run-s crates:*",
"build:vite": "vite build",
"build": "run-s build:crates build:vite",
"typecheck": "tsc",
"lint:prettier": "prettier . --check",
"lint:eslint": "eslint . --format stylish",
"lint": "run-p lint:*",
"fix:prettier": "pnpm run lint:prettier --write",
"fix:eslint": "pnpm run lint:eslint --fix",
"fix": "run-s fix:eslint fix:prettier"
},
"dependencies": {
"@blueprintjs/core": "5.16.2",
"@blueprintjs/icons": "5.16.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.17"
},
"devDependencies": {
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "4.6.2",
"npm-run-all2": "6.2.6",
"postcss": "8.4.49",
"prettier": "3.4.2",
"typescript": "5.7.2",
"vite": "5.4.11"
},
"engines": {
"node": "^21"
},
"packageManager": "[email protected]"
}