-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.69 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": "zuse",
"version": "1.0.0",
"private": true,
"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": "yarn crate:${MODE:-build}",
"crates:zuse-rs": "yarn crate zuse-rs",
"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": "yarn lint:prettier --write",
"fix:eslint": "yarn lint:eslint --fix",
"fix": "run-s fix:eslint fix:prettier",
"serve": "darkhttpd dist --port 8080 --default-mimetype application/wasm",
"install:wasm-pack": "yarn global add wasm-pack"
},
"devDependencies": {
"@types/papaparse": "5.3.8",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-react-refresh": "1.3.6",
"autoprefixer": "10.4.15",
"eslint": "8.49.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.29",
"prettier": "2.8.8",
"typescript": "4.9.5",
"vite": "2.9.16"
},
"dependencies": {
"@blueprintjs/core": "4.20.2",
"@blueprintjs/icons": "4.16.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3"
}
}