-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
88 lines (88 loc) · 2.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "next-core",
"private": true,
"homepage": "https://github.com/easyops-cn/next-core",
"repository": {
"type": "git",
"url": "[email protected]:easyops-cn/next-core.git"
},
"license": "GPL-3.0",
"scripts": {
"prepare": "husky",
"start": "lerna run start --scope \"@next-core/brick-container\" -- --local-container",
"serve": "brick-container-serve --local-container",
"serve:e2e": "brick-container-serve --no-remote --local-micro-apps e2e",
"start:playground": "lerna run start --scope \"@next-core/brick-playground\" --",
"serve:playground": "brick-playground-serve",
"build": "lerna run build --concurrency 2",
"test": "test-next-project",
"test:ci": "lerna run test:ci --concurrency 2 -- --runInBand",
"cypress:open": "cypress open",
"cypress:run": "cypress run --record",
"cypress:run:no-record": "cypress run",
"test:e2e:ci": "npx start-server-and-test serve:e2e http-get://localhost:8081/ cypress:run",
"test:e2e:no-record": "npx wait-on -r http-get://localhost:8081/ && npx start-server-and-test serve:e2e http-get://localhost:8081/ cypress:run:no-record",
"test:e2e:docker": "docker-compose run --user $(id -u):$(id -g) e2e",
"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": {
"@babel/core": "^7.25.2",
"@babel/types": "^7.25.6",
"@cypress/browserify-preprocessor": "^3.0.2",
"@next-core/brick-container": "*",
"@next-core/brick-playground": "*",
"@next-core/test-next": "*",
"@types/doctrine": "^0.0.9",
"@types/fs-extra": "^9.0.13",
"@types/history": "^4.7.11",
"@types/inquirer": "^7.3.3",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^3.12.10",
"@types/klaw-sync": "^6.0.5",
"@types/lodash": "^4.17.7",
"@types/meow": "^5.0.0",
"@types/node": "^20.16.2",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"babel-jest": "^29.7.0",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"cypress": "^13.14.2",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-websocket-mock": "^2.5.0",
"lerna": "^8.1.8",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.6.2"
},
"workspaces": [
"bricks/*",
"packages/*"
],
"resolutions": {
"@babel/parser": "^7.25.6",
"@babel/runtime": "^7.25.6",
"@types/react": "^18.3.4",
"lodash": "^4.17.21",
"moment": "^2.30.1"
}
}