-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "56kcloud-website",
"version": "1.0.0",
"private": true,
"description": "",
"keywords": [],
"repository": {
"url": "https://github.com/56kcloud/56kcloud-website"
},
"license": "ISC",
"author": "56kcloud",
"scripts": {
"dev": "cd apps/www && pnpm dev",
"build": "cd apps/www && pnpm build",
"lint": "run-p lint-eslint prettier-check",
"lint-eslint": "eslint . --ext js,jsx,ts,tsx --max-warnings=0 --config .eslintrc.json --no-eslintrc",
"prettier-check": "prettier --check ."
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "22.5.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^8.5.6",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^4.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"tsx": "^4.19.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
}
}