-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
66 lines (66 loc) · 2.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "shiba-v2",
"private": true,
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "concurrently -c auto npm:watch:bundle npm:watch:ts npm:watch:rs",
"watch:bundle": "npm run bundle -- --watch",
"watch:ts": "npm run lint:tsc -- --watch --preserveWatchOutput",
"watch:rs": "cargo watch --watch src --watch bench/benches -- cargo check --all --benches --color always",
"bundle": "node scripts/bundle.mjs",
"release": "npm run bundle -- --minify",
"fix": "concurrently -m 1 -c auto npm:fix:rustfmt npm:fix:eslint npm:fix:prettier",
"fix:rustfmt": "cargo fmt --all",
"fix:prettier": "prettier --write \"web/**/*.ts\" \"web/**/*.tsx\" scripts/bundle.mjs web/style.css",
"fix:eslint": "eslint --fix \"web/**/*.ts\" \"web/**/*.tsx\"",
"lint": "concurrently -c auto npm:lint:tsc npm:lint:clippy npm:lint:prettier npm:lint:rustfmt npm:lint:eslint npm:lint:stylelint",
"lint:tsc": "tsc --noEmit -p . --pretty",
"lint:clippy": "cargo clippy --color always --all-features --all --benches -- -D warnings",
"lint:prettier": "prettier --check \"web/**/*.ts\" \"web/**/*.tsx\" scripts/bundle.mjs web/style.css",
"lint:rustfmt": "cargo fmt --all --check -- --color always",
"lint:eslint": "eslint --max-warnings 0 \"web/**/*.ts\" \"web/**/*.tsx\"",
"lint:stylelint": "stylelint web/style.css",
"lint:web": "concurrently -c auto npm:lint:tsc npm:lint:prettier npm:lint:eslint npm:lint:stylelint",
"test": "cargo test"
},
"author": "rhysd <lin90162@yahoo.co.jp> (https://rhysd.github.io/)",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.1",
"@mui/material": "^6.1.1",
"@primer/octicons-react": "^19.11.0",
"github-markdown-css": "^5.6.1",
"highlight.js": "^11.10.0",
"mathjax-full": "^3.2.2",
"mermaid": "^11.2.1",
"mousetrap": "^1.6.5",
"re-resizable": "^6.9.18",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/mousetrap": "^1.6.15",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"concurrently": "^9.0.1",
"esbuild": "^0.23.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-security": "^3.0.1",
"prettier": "^3.3.3",
"set-git-hooks-dir": "^1.0.0",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.6.2"
}
}