-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
80 lines (80 loc) · 2.44 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
{
"name": "viewer-design",
"private": true,
"workspaces": [
"packages/*"
],
"files": [
"lib",
"packages"
],
"main": "lib/index.js",
"module": "lib/index.esm.js",
"style": "lib/theme-chalk/index.css",
"scripts": {
"start": "webpack serve --config story/config/webpack.dev.js",
"build": "webpack --config story/config/webpack.pro.js",
"build:theme": "gulp build --gulpfile packages/theme-chalk/gulpfile.js",
"build:umd": "webpack --config ./builds/webpack.umd.js",
"build:esm-bundle": "rollup -c ./builds/rollup.component.js",
"build:esm": "rollup -c ./builds/rollup.esm.js",
"lint": "eslint --ext .tsx,.ts,.vue . && prettier --check .",
"lint:fix": "eslint --fix --ext .tsx,.ts,.vue . && prettier --write ."
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-typescript": "^7.14.4",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-angular": "^13.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vue/babel-plugin-jsx": "^1.0.6",
"@vue/compiler-sfc": "^3.0.11",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"css-loader": "^5.2.6",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-vue": "^7.18.0",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-cssmin": "^0.2.0",
"gulp-dart-sass": "^1.0.2",
"gulp-rename": "^2.0.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.1",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"rollup": "^2.51.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.34.1",
"sass-loader": "^12.0.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"vue-eslint-parser": "^7.11.0",
"vue-loader": "^16.2.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"typescript": "^4.3.2",
"vue": "^3.0.11",
"vue-router": "4"
},
"lint-staged": {
"packages/**/*.{js,ts,vue}": [
"yarn lint"
]
}
}