-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.42 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "calf-ui",
"version": "1.1.8",
"description": "A mobile ui lib implement by Vue",
"author": "tao_liu <[email protected]>",
"main": "lib/index.js",
"module": "src/index.js",
"private": false,
"license": "ISC",
"scripts": {
"dev": "webpack-dev-server --env development --config build/webpack.dev.conf.js",
"start": "npm run dev",
"doc": "docsify serve docs",
"unit": "jest --config test/unit/jest.conf.js --coverage",
"test": "npm run unit",
"lint": "eslint --ext .js,.vue src test/unit example",
"lint:fix": "eslint --fix --ext .js,.vue src test/unit example",
"build": "npm run build:lib && npm run build:module",
"build:module": "cross-env NODE_ENV=production webpack --config build/webpack.modules.conf.js",
"build:lib": "cross-env NODE_ENV=production webpack --config build/webpack.prod.conf.js",
"build:example": "cross-env NODE_ENV=production webpack --config build/webpack.example.conf.js",
"build:analyze": "cross-env BUILD_ENV=bundleAnalyzer npm run build:lib",
"deploy:example": "node build/deploy.js"
},
"dependencies": {
"better-scroll": "^1.15.2",
"calf-ui": "^1.1.8",
"vue": "^2.5.2",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"autoprefixer": "^7.1.2",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"chalk": "^2.0.1",
"clean-webpack-plugin": "^3.0.0",
"core-js": "3",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"docsify": "^4.10.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^6.2.2",
"fastclick": "^1.0.6",
"file-loader": "^5.1.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.0.4",
"jest-serializer-vue": "^0.3.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-notifier": "^5.1.2",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"ora": "^1.2.0",
"portfinder": "^1.0.13",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-pxtorem": "^5.1.0",
"postcss-url": "^7.2.1",
"precss": "^4.0.0",
"rimraf": "^2.6.0",
"scp2": "^0.5.0",
"semver": "^5.3.0",
"shelljs": "^0.7.8",
"speed-measure-webpack-plugin": "^1.3.1",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^3.0.0",
"vue-jest": "^1.0.2",
"vue-loader": "^15.9.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}