forked from GDGToulouse/devfest-theme-hugo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.33 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
{
"name": "devfest-theme-hugo",
"version": "1.0.0",
"description": "A theme for a conference website. Created for DevFest Toulouse 2019",
"repository": "https://github.com/GDGToulouse/devfest-theme-hugo",
"author": "Igor Laborie <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"watch:script": "rollup -c --watch",
"watch:style": "sass src/styles/theme.scss static/theme.css --watch",
"start": "run-p watch:*",
"build:icons": "node icons.js",
"build:script": "rollup -c rollup.config.prod.js",
"build:style": "sass src/styles/theme.scss static/theme.css; postcss static/theme.css --replace",
"build": "run-p build:*"
},
"dependencies": {
"core-js": "^3.21.0"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@types/js-yaml": "^4.0.5",
"cssnano": "^5.0.17",
"glob": "^7.2.0",
"npm-run-all": "^4.1.5",
"plop-logger": "^3.1.7",
"postcss-cli": "^9.1.0",
"postcss-preset-env": "^7.3.2",
"rollup": "^2.67.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "github:ryanwillis/rollup-plugin-uglify#ff91f958935946798879035eb6afd985ad5ed01d",
"sass": "^1.49.7",
"sass-mq": "^6.0.0",
"stylelint": "^14.5.0"
}
}