-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.71 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
81
82
83
84
85
{
"name": "@freshes/robot",
"version": "0.1.0",
"description": "Robotx is designed for dashboard. And it is vue-based implementation.",
"author": "Wu Qicheng <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/freshesx/robotx.git"
},
"keywords": [
"vue",
"javascript",
"components"
],
"files": [
"packages"
],
"scripts": {
"start": "yarn run example",
"build": "rollup -c ./scripts/rollup/build.js",
"docs:api": "rm -rf docs/api && esdoc -c scripts/esdoc/esdoc.json",
"docs:vue": "vue-styleguidist server --config scripts/styleguidist/vuedoc.js",
"docs:vue:build": "vue-styleguidist build --config scripts/styleguidist/vuedoc.js",
"docs:publish": "yarn run docs:api && yarn run docs:vue:build",
"test": "yarn run unit",
"example": "node scripts/house/development.js",
"example:build": "node scripts/house/production.js",
"unit": "jest --config scripts/jest/jest.conf.js",
"tag": "yarn run lerna publish --skip-npm"
},
"devDependencies": {
"@freshes/house": "^1.1.0",
"@freshes/style-import-loader": "^0.4.0",
"@freshes/suite": "^1.0.1",
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.2",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-jest": "^22.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-jest": "^21.9.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-standard": "^3.0.1",
"jest": "^21.2.1",
"lerna": "^2.5.1",
"lodash": "^4.17.4",
"rollup": "^0.51.8",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-scss": "^0.3.0",
"rollup-plugin-vue2": "^0.8.0",
"vue-human-icons": "^1.4.0",
"vue-jest": "^1.2.0",
"vue-styleguidist": "^1.3.5",
"vue-test-utils": "^1.0.0-beta.6",
"vuelidate": "^0.6.1"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.5.0"
},
"dependencies": {
"element-ui": "^2.1.0",
"mobx": "^3.5.1",
"vue-mobx": "^2.0.0"
}
}