-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.19 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
{
"name": "leafy-design-system",
"version": "0.0.91",
"title": "Leafy Design system",
"description": "Leafy Design system based on Stripe, Shopify and Antdesign",
"keywords": [
"leafy",
"ui",
"design",
"system"
],
"author": "alexsexotic <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"unpkg": "dist/simplealertcomponent.min.js",
"files": [
"dist/*",
"components/*",
"lib/*",
"attributes.json",
"tags.json"
],
"repository": {
"type": "git",
"url": "https://github.com/alexxsexotic/leafy-design-system.git"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.demo.js --mode development --open --hot",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.config.js --mode production --progress --hide-modules",
"release": "standard-version",
"pre:publish": "rm -rf dist && npm run build && npm run gulp:style && npm run release",
"publish": "npm run lazygit && npm publish",
"gulp:style": "gulp style --gulpfile build/gulpfile.js",
"gulp:font": "gulp font --gulpfile build/gulpfile.js",
"lazygit": "git add . && git commit -a -m '$1' && git push origin master"
},
"dependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"compression-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^3.1.0",
"file-loader": "^4.0.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-cssmin": "^0.2.0",
"gulp-minify-css": "^1.2.4",
"gulp-sass": "^4.0.2",
"html-webpack-plugin": "^3.2.0",
"merge-stream": "^2.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^7.1.0",
"standard-version": "^7.0.0",
"terser-webpack-plugin": "^1.4.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^2.1.0",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.1.14"
}
}