-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.25 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.25 KB
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
{
"name": "GLAMOS",
"version": "0.0.0",
"private": true,
"license": "UNLICENSED",
"author": {
"name": "Meteotest",
"email": "web@meteotest.ch",
"url": "https://meteotest.ch"
},
"maintainers": [
"Kaspar Allenbach <kaspar.allenbach@meteotest.ch>",
"Thomas Lahn <thomas.lahn@meteotest.ch>"
],
"dependencies": {
"@kspr/gugus-ie-detector": "^3.0.0",
"c3": "^0.6.8",
"gugus-media-queries": "^1.1.1",
"jquery-ui": "^1.12.1",
"jquery.mmenu": "^7.0.6",
"normalize.css": "^8.0.0",
"npm-run-all": "^4.1.5",
"ol-ext": "^3.0.2",
"stickUp": "^2.3.1"
},
"devDependencies": {
"autoprefixer": "^7.2.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"compression-webpack-plugin": "^1.1.7",
"cssnano": "^3.10.0",
"lazysizes": "^4.0.1",
"lightgallery": "^1.6.6",
"node-sass": "^4.7.2",
"ol": "^5.2.0",
"postcss": "^6.0.19",
"postcss-cli": "^4.1.1",
"respimage": "^1.4.2",
"watch": "^1.0.2",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.1"
},
"scripts": {
"clean": "rm -r node_modules/",
"build:js": "webpack --config webpack/webpack.prod.config.js",
"build:dev:js": "webpack --config webpack/webpack.devbuild.config.js",
"build:css": "node-sass --output-style compressed --source-map true theme_src/scss/glamos.scss www/theme/css/glamos.min.css",
"build:dev:css": "node-sass --source-map true theme_src/scss/glamos.scss www/theme/css/glamos.dev.css",
"prebuild:css": "node-sass --source-map true theme_src/scss/glamos.scss www/theme/css/glamos.prebuild.css",
"prefix:css": "postcss --use autoprefixer -b 'last 3 versions' --grid true < www/theme/css/glamos.prebuild.css | postcss --use cssnano > www/theme/css/glamos.min.css",
"watch:js": "webpack --config webpack/webpack.dev.config.js",
"watch:css": "watch \"npm run build:dev:css\" theme_src/scss",
"dev": "npm-run-all --parallel watch:css watch:js",
"build": "npm-run-all --parallel build:css build:js ",
"build:dev": "npm-run-all --parallel build:dev:css build:dev:js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@gitlab.mt.local:web_software/GLAMOS.git"
}
}