-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
72 lines (72 loc) · 2.68 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
{
"name": "@arco-design/arco-cli",
"description": "Arco CLI & Arco Scripts",
"private": true,
"scripts": {
"prepare": "husky install",
"init": "pnpm i && npm run build",
"clean": "lerna run clean --parallel --ignore=\"@arco-cli/workspace-materials\"",
"build": "lerna run build --parallel --ignore=\"@arco-cli/workspace-materials\" && npm run build:materials",
"build:materials": "lerna run build --scope=\"@arco-cli/workspace-materials\"",
"link": "node ./scripts/linkLocalPackages.js",
"format": "prettier --config --write \"packages/**/*.{js,jsx,ts,tsx}\"",
"eslint": "eslint packages/ --fix --cache --quiet --ext .js,.jsx,.ts,.tsx",
"stylelint": "stylelint 'packages/**/*.scss' --fix --cache"
},
"dependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.5",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.6",
"@mdx-js/react": "^1.6.22",
"babel-plugin-tsconfig-paths-module-resolver": "^1.0.4",
"chalk": "^4.1.2",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/gulp": "^4.0.8",
"@types/gulp-if": "^0.0.33",
"@types/gulp-plumber": "^0.0.32",
"@types/jest": "^29.2.5",
"@types/lodash": "^4.14.191",
"@types/merge-stream": "^1.1.2",
"@types/node": "^15.6.0",
"@types/react": "^17.0.39",
"@types/through2": "^2.0.36",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.2.2",
"lerna": "^6.0.3",
"lint-staged": "^13.1.1",
"prettier": "^2.7.1",
"stylelint": "^14.14.0",
"stylelint-config-standard-scss": "^6.1.0"
}
}