-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.28 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
{
"name": "toy-scheme",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "pnpm --filter './packages/*' build",
"dev": "NODE_OPTIONS=\"--max-old-space-size=8192\" pnpm -r --parallel --filter './packages/*' dev",
"format:toml": "taplo format --check '.cargo/*.toml' './packages/**/Cargo.toml' './Cargo.toml'",
"lint": "eslint ./packages --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"prepare": "husky install"
},
"lint-staged": {
"*.rs": "rustfmt --edition 2021",
"*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}": "pnpm run lint",
"*.toml": "pnpm run format:toml"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@rushstack/eslint-patch": "^1.1.4",
"@taplo/cli": "^0.5.2",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.11.12",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"eslint": "^8.22.0",
"eslint-define-config": "^1.17.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-regexp": "^1.14.0",
"eslint-plugin-vue": "^9.3.0",
"lint-staged": "^13.2.1",
"prettier": "^2.7.1",
"rimraf": "^5.0.0",
"typescript": "~4.7.4",
"why-is-node-running": "^2.2.2",
"husky": "^8.0.0"
}
}