-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.21 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.21 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
{
"name": "@glidejs/website",
"version": "1.0.0",
"description": "A website of the Glide.js slider and carousel.",
"scripts": {
"clean": "rm -rf public",
"docs": "rm -rf src/docs && cp -r node_modules/@glidejs/docs src/docs",
"js:glide": "rollup --config build/build.javascript.js -i resources/assets/js/glide.js -o public/js/glide.js",
"js:index": "rollup --config build/build.javascript.js -i resources/assets/js/index.js -o public/js/index.js",
"js:docs": "rollup --config build/build.javascript.js -i resources/assets/js/docs.js -o public/js/docs.js",
"build:metalsmith": "npm run clean && node build/build.metalsmith.js",
"build:js": "npm run js:glide && npm run js:index && npm run js:docs",
"build:sass": "sass resources/assets/sass/app.scss:public/css/app.css",
"build:postcss": "postcss -o public/css/app.css public/css/app.css --config build",
"build": "npm run docs && npm run build:metalsmith && npm run build:sass && npm run build:js && npm run build:postcss"
},
"keywords": [
"glidejs",
"website"
],
"dependencies": {
"@bemoid/bemoid": "git://github.com/bemoid/bemoid.git#59e836b20300e81e8ce2b93ecec788f0e6c3e037",
"@glidejs/docs": "git://github.com/glidejs/docs.git",
"@glidejs/glide": "^3.5.2",
"prismjs": "^1.27.0",
"scrollreveal": "^3.4.0"
},
"devDependencies": {
"autoprefixer": "^7.2.6",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"cssnano": "^3.10.0",
"dotenv": "^4.0.0",
"gzip-size": "^4.1.0",
"metalsmith": "^2.1.0",
"metalsmith-algolia": "^0.1.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-collections": "^0.9.0",
"metalsmith-filenames": "^1.0.0",
"metalsmith-layouts": "^1.4.1",
"metalsmith-markdown": "^0.2.1",
"metalsmith-paths": "^3.0.1",
"metalsmith-permalinks": "^0.5.0",
"metalsmith-static": "0.0.5",
"sass": "^1.43.4",
"nunjucks": "^3.2.1",
"postcss": "^6.0.23",
"postcss-cli": "^5.0.1",
"postcss-uncss": "^0.16.1",
"rollup": "^2.50.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"rollup-plugin-terser": "^7.0.2",
"shortcode-insert": "^1.0.2"
}
}