-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.68 KB
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
{
"name": "knucklebones",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@8.10.3",
"scripts": {
"dev": "turbo run dev",
"build": "NODE_ENV=production turbo run build",
"lint": "prettier \"{apps,packages}/**/*.ts?(x)\" --check && eslint \"{apps,packages}/**/*.ts?(x)\"",
"lint:fix": "prettier \"{apps,packages}/**/*.ts?(x)\" --write && eslint \"{apps,packages}/**/*.ts?(x)\" --fix",
"prepare": "husky"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240314.0",
"@sentry/types": "^7.107.0",
"@types/crypto-js": "^4.2.2",
"@types/itty-router-extras": "^0.4.3",
"@types/node": "^20.11.28",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.18",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"node-fetch": "^3.3.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.4.1",
"tslib": "^2.6.2",
"turbo": "^1.12.5",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"wrangler": "^3.34.2"
},
"volta": {
"node": "20.9.0"
}
}