-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) Β· 1.29 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
{
"name": "web33-Nocta",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "pnpm --filter server test",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"lint": "eslint . --fix",
"lint:client": "eslint \"client/src/**/*.{ts,tsx}\" --fix",
"lint:server": "eslint \"server/src/**/*.{ts,tsx}\" --fix",
"build": "pnpm build:lib && pnpm -r build",
"build:lib": "cd @noctaCrdt && pnpm build",
"build:client": "cd client && pnpm build",
"build:server": "cd server && pnpm build",
"dev": "pnpm -r --parallel dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@noctaCrdt": "workspace:*",
"@eslint/js": "^9.14.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-import-resolver-typescript": "^3.6.3",
"prettier": "^3.0.0",
"typescript": "~5.3.3"
}
}