-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.21 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
{
"name": "fd-exam-2024",
"version": "1.0.0",
"description": "Startercode for Frontend Development exam",
"main": "index.js",
"scripts": {
"server": "npx light-server -s . -w \"./**\"",
"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",
"dev": "npm-run-all --parallel server lint build:css copy:fonts watch:css"
},
"repository": {
"type": "git",
"url": "https://github.com/mi-classroom/fd-html-und-css-cnoss"
},
"author": "Christian Noss",
"license": "ISC",
"devDependencies": {
"light-server": "^2.9.1",
"lightningcss": "^1.24.1",
"lightningcss-cli": "^1.24.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"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"
}
}