-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.26 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
{
"name": "idola",
"version": "1.0.0",
"description": "UI kit for GSR",
"main": "./lib/idola.js",
"scripts": {
"clean": "rimraf ./lib && rimraf ./public",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config ./configs/webpack.dev.js",
"build": "npm run clean && cross-env NODE_ENV=production webpack --config ./configs/webpack.prod.js",
"test": "jest",
"coverage": "jest --coverage",
"publish:docs": "node ./bin/gh-pages.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gfdm/idola.git"
},
"author": "Jikkai Xiao <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gfdm/idola/issues"
},
"homepage": "https://github.com/gfdm/idola#readme",
"dependencies": {
"feather-icons": "^4.7.3",
"modern-normalize": "^0.5.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@vue/test-utils": "^1.0.0-beta.19",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-loader": "^8.0.0-beta.3",
"consola": "^1.4.1",
"coveralls": "^3.0.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^1.1.11",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.1.0",
"jest-serializer-vue": "^2.0.2",
"js-yaml": "^3.12.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"progress-bar-webpack-plugin": "^1.11.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"sass-resources-loader": "^1.3.3",
"style-loader": "^0.21.0",
"vue": "^2.5.16",
"vue-jest": "^2.6.0",
"vue-loader": "^15.2.4",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
}
}