-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·32 lines (32 loc) · 1.09 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
{
"name": "lansend",
"private": true,
"type": "module",
"version": "0.0.1-alpha.1",
"description": "A simple chat room.",
"author": "meowtec <[email protected]>",
"devDependencies": {
"@types/node": "^18.16.5",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^5.0.4"
},
"scripts": {
"dev:app": "pnpm run --dir packages/launcher dev:app",
"dev:cli": "pnpm run --dir packages/web dev",
"tsc": "tsc --build",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx packages",
"build:web": "pnpm run --dir packages/web build",
"lint:rs": "cargo fmt --check --all && cargo clippy",
"check": "pnpm run tsc && pnpm run lint:js && pnpm run build:web && pnpm run lint:rs"
},
"license": "MIT"
}