-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
53 lines (53 loc) · 1.9 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
53
{
"author": "Ross Hill <[email protected]>",
"name": "mandelbrot.site",
"repository": "https://github.com/rosslh/mandelbrot.site",
"license": "MIT",
"scripts": {
"build": "webpack --mode production || webpack --mode production",
"dev": "webpack-dev-server --mode development --open --port 9090",
"serve": "npx http-server dist -p 9090",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ignore-path ../.gitignore && cd ../mandelbrot && cargo clippy",
"format": "prettier --ignore-path ../.gitignore --write . && cd ../mandelbrot && cargo fmt",
"format:check": "prettier --ignore-path ../.gitignore --check . && cd ../mandelbrot && cargo fmt -- --check",
"test": "cargo test",
"test:update-snapshots": "cargo insta test --accept",
"clean": "cd .. && rm -rf Cargo.lock mandelbrot/pkg target/* client/package-lock.json client/node_modules client/dist client/pkg"
},
"bin": {
"create-rust-wasm-worker": ".bin/create-rust-wasm-worker.js"
},
"devDependencies": {
"@types/file-saver": "^2.0.7",
"@types/leaflet": "1.7.1",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@wasm-tool/wasm-pack-plugin": "^1.7.0",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.0",
"eslint": "^8.56.0",
"file-loader": "^6.2.0",
"front-matter": "^4.0.2",
"html-webpack-plugin": "^5.6.0",
"marked": "^12.0.2",
"mini-css-extract-plugin": "^2.7.7",
"prettier": "3.3.3",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"workbox-webpack-plugin": "^7.3.0"
},
"dependencies": {
"@supabase/supabase-js": "^2.45.2",
"file-saver": "^2.0.5",
"leaflet": "1.7.1",
"lodash": "^4.17.21",
"threads": "^1.7.0"
}
}