-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
31 lines (31 loc) · 1.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
{
"name": "cnoss-thesis-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"decap-server": "npx decap-server && echo 'Decap server started http://localhost:8081'",
"jekyll": "jekyll serve -l",
"dev": "npm-run-all --parallel decap-server jekyll lint build:css copy:fonts watch:css",
"lint": "stylelint assets/styles/*.css",
"lint:fix": "stylelint assets/styles/*.css --fix",
"copy:fonts": "recursive-copy -w assets/fonts compiled-assets/fonts",
"build:css": "lightningcss --minify --bundle --sourcemap --targets '>= 0.25%' assets/styles/_combined-styles.css -o compiled-assets/styles/combined-styles.css",
"watch:css": "onchange 'assets/styles/*.css' -- npm run build:css",
"live": "jekyll build & npm run copy:fonts & npm run build:css"
},
"dependencies": {
"decap-cms-app": "^3.1.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"lightningcss": "^1.24.1",
"lightningcss-cli": "^1.24.1",
"recursive-copy-cli": "^1.0.20",
"stylelint": "^16.4.0",
"stylelint-config-idiomatic-order": "^10.0.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"onchange": "^7.1.0"
}
}