-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·128 lines (128 loc) · 4.84 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "vhug-tasks",
"version": "1.0.3",
"description": "Buildtasks for VHUG",
"keywords": [
"taskrunner",
"groundzero"
],
"author": "Philipp Bergmann",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vonheldenundgestalten/vhug-tasks"
},
"main": "./cli.js",
"bin": {
"groundzero": "./cli.js"
},
"scripts": {
"build": "npm-run-all clean:build copy:assets sync:icons build:css build:styleguide build:webpack fractal:build -l --silent",
"build:css": "node ./lib/build-css",
"build:css:minify": "node ./lib/build-css --minify",
"build:css:release": "node ./lib/build-css --minify --release",
"build:icons": "svg-sprite --config $SPRITE_CONFIG -D $PROJECT_CWD/web-ui/assets/img/sprite-icons $PROJECT_CWD/develop/assets/img/sprite-icons/*.svg",
"build:icons:release": "svg-sprite --config $SPRITE_CONFIG -D $PROJECT_CWD/release/assets/img/sprite-icons $PROJECT_CWD/develop/assets/img/sprite-icons/*.svg",
"build:styleguide": "node ./lib/build-css --styleguide",
"build:webpack": "webpack --config $WEBPACK_DEV_CONFIG",
"build:webpack:prod": "webpack --config $WEBPACK_DEV_CONFIG --output-path $PROJECT_CWD/release/assets/js",
"clean:build": "node ./lib/clean --build",
"clean:fractal": "node ./lib/clean --webui",
"clean:release": "node ./lib/clean --release",
"commitmsg": "commitlint -e $GIT_PARAMS",
"copy:assets": "node ./lib/copy-assets",
"copy:assets:release": "node ./lib/copy-assets --release",
"copy:icons": "node ./lib/copy-icons",
"copy:icons:release": "node ./lib/copy-icons --release",
"deploy": "node ./lib/rsync",
"deploy:all": "node ./lib/rsync --all",
"deploy:feature": "node ./lib/rsync --feature",
"deploy:feature:all": "node ./lib/rsync --feature --all",
"deploy:feature:stage": "node ./lib/rsync --feature --stage",
"deploy:stage": "node ./lib/rsync --stage",
"dev": "npm-run-all copy:assets sync:icons build:css build:styleguide --parallel watch:* fractal:server -l --silent",
"fractal:build": "node ./lib/fractal-build",
"fractal:export": "node ./lib/fractal-export",
"fractal:server": "node ./lib/fractal-start",
"imagemin": "node ./lib/imagemin",
"newpattern": "node ./lib/newpattern",
"optimize:assets": "run-s copy:assets imagemin",
"pkg:release": "groundzero-changelog",
"pkg:publish": "npm publish --access public",
"precommit": "lint-staged",
"predeploy": "run-s build",
"release": "npm-run-all clean:release copy:assets:release release:sync:icons build:css:release release:webpack build:webpack:prod fractal:export -l --silent",
"release:sync:icons": "run-s copy:icons:release build:icons:release",
"release:webpack": "webpack --config $WEBPACK_PROD_CONFIG",
"sync:icons": "run-s copy:icons build:icons",
"watch:css": "onchange $PROJECT_CWD'/develop/**/**/*.scss' -e $PROJECT_CWD'/develop/**/**/*.styleguide.scss' -- npm run build:css",
"watch:icons": "onchange $PROJECT_CWD'/develop/assets/img/sprite-icons/*.svg' -- npm run sync:icons",
"watch:styleguide": "onchange $PROJECT_CWD'/develop/**/**/*.styleguide.scss' -- npm run build:styleguide",
"watch:webpack": "webpack --config $WEBPACK_DEV_CONFIG --watch",
"jest": "jest"
},
"fractal": {
"main": "fractal-config.js"
},
"lint-staged": {
"**/*.js": "eslint"
},
"browserslist": [
"last 2 version",
"> 1%",
"IE 11"
],
"dependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@frctl/fractal": "^1.1.7",
"@jvmn/upload-rsync": "^0.0.9",
"autoprefixer": "^9.4.8",
"babel-loader": "^8.0.5",
"browser-sync": "^2.26.3",
"compression-webpack-plugin": "^2.0.0",
"concat": "^1.0.3",
"copy-dir": "^0.4.0",
"cssnano": "^4.1.10",
"csso": "^3.5.1",
"del": "^3.0.0",
"git-rev": "^0.2.1",
"globby": "^9.0.0",
"imagemin": "^6.1.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^7.0.0",
"imagemin-svgo": "^7.0.0",
"inquirer": "^6.2.2",
"jest": "^24.5.0",
"lodash": "^4.17.11",
"minimist": "^1.2.0",
"natural-orderby": "^2.0.1",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"onchange": "^5.2.0",
"path": "^0.12.7",
"postcss": "^7.0.14",
"pretty": "^2.0.0",
"svg-sprite": "^1.5.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.5",
"webpack-bundle-analyzer": "^3.0.4",
"webpack-cli": "^3.2.3",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"ajv": "^6.9.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.1.0"
}
}