-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "root",
"private": true,
"scripts": {
"ci": "lerna bootstrap && lerna run lint && lerna run prepare && npm run cov",
"cov": "jest --coverage",
"lint": "eslint packages/",
"test": "jest packages/",
"pre-commit": "npm run lint",
"install:example": "lerna bootstrap --scope \"@alicloud/demo-*\"",
"pub:canary": "lerna publish --exact --npm-tag=canary --canary=canary",
"pub": "lerna publish"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-private-property-in-object": "^7.16.0",
"@types/chai": "^4.1.7",
"@types/jest": "^23.3.13",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-ali": "^12.2.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^1.1.2",
"jest": "24.7.1",
"nyc": "^13.1.0",
"typescript": "^4.0.0"
},
"dependencies": {
"@types/webpack": "^4.41.0",
"pnpm": "^8.6.7",
"single-spa-react": "^2.10.2",
"webpack-merge": "^4.2.2"
}
}