-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.78 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
{
"name": "onemin-table",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"author": {
"name": "OrekiSH",
"email": "[email protected]"
},
"scripts": {
"bootstrap": "node ./scripts/bootstrap.js",
"lint": "eslint --ext .vue,.js --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .vue,.js --ignore-path .gitignore .",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"deploy": "npm run docs:build && node scripts/deploy.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.13.15",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@vue/test-utils": "^1.1.4",
"@vuepress-dumi/vuepress-theme-dumi": "^0.3.8",
"async-validator": "1.11.5",
"axios": "^0.21.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-transform-dynamic-imports-to-static-imports": "^0.3.0",
"conventional-changelog-cli": "^2.1.1",
"element-ui": "^2.15.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.5.0",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lodash": "^4.17.21",
"markdown-it-task-lists": "^2.1.1",
"regenerator-runtime": "^0.13.7",
"rollup": "2.30",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.6",
"vue": "^2.6.12",
"vue-jest": "^3.0.7",
"vuepress": "^1.8.1"
}
}