-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "next-react",
"private": true,
"homepage": "https://github.com/easyops-cn/next-react",
"repository": {
"type": "git",
"url": "[email protected]:easyops-cn/next-react.git"
},
"license": "GPL-3.0",
"scripts": {
"prepare": "husky",
"start": "lerna run start",
"build": "lerna run build --concurrency 2",
"test": "test-next-project",
"test:ci": "lerna run test:ci --concurrency 2 -- --runInBand",
"lint-staged": "lint-staged"
},
"browserslist": {
"development": [
"extends @next-core/browserslist-config-next/development"
],
"production": [
"extends @next-core/browserslist-config-next/production"
]
},
"prettier": {
"trailingComma": "es5"
},
"devDependencies": {
"@next-core/browserslist-config-next": "^1.1.2",
"@next-core/eslint-config-next": "^2.0.26",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^20.16.2",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"babel-jest": "^29.7.0",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.8",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.7.3"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"@babel/runtime": "^7.26.0",
"@types/react": "^19.0.4",
"lodash": "^4.17.21"
}
}