-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.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
{
"name": "boot",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"start": "concurrently \"yarn dev\" \"yarn serve:boot\"",
"dev": "yarn workspace basic-example dev",
"build": "lerna run build",
"build:boot": "yarn workspace @music163/tango-boot build",
"serve:boot": "yarn workspace @music163/tango-boot serve",
"test": "jest",
"test:watch": "jest --watch",
"eslint": "eslint packages/**/src/*.{ts,tsx}",
"publish": "lerna publish",
"ver": "lerna version --no-private --conventional-commits",
"release": "yarn eslint && yarn build && yarn run ver && lerna publish from-git",
"release:beta": "yarn eslint && yarn build && yarn run ver && lerna publish from-package --dist-tag beta",
"up": "yarn upgrade-interactive --latest"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.10",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"babel-loader": "^9.1.3",
"concurrently": "^7.6.0",
"eslint": "^8.47.0",
"eslint-config-ali": "^14.0.2",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lerna": "^6.5.1",
"progress-bar-webpack-plugin": "2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "^5.1.6",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.13.1"
}
}