-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
37 lines (37 loc) · 1.17 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
{
"name": "@tc39/tc39.github.io",
"private": true,
"description": "Get involved in specifying JavaScript",
"repository": {
"type": "git",
"url": "https://github.com/tc39/tc39.github.io.git"
},
"type": "module",
"scripts": {
"prebuild": "npm run sass",
"build": "eleventy",
"fix": "npm run fix:biome & npm run fix:scss",
"fix:biome": "npm run lint:biome -- --fix",
"fix:scss": "npm run lint:scss -- --fix",
"lint": "npm run lint:biome && npm run lint:scss",
"lint:biome": "biome check",
"lint:scss": "stylelint _sass",
"sass": "sass --style=compressed _sass/style.scss assets/css/style.css",
"sass:watch": "sass --style=compressed _sass/style.scss assets/css/style.css --watch",
"start": "eleventy --serve --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@11ty/eleventy": "3.0.0",
"@11ty/eleventy-fetch": "4.0.1",
"@biomejs/biome": "^1.9.4",
"@primer/octicons": "19.12.0",
"sass-embedded": "1.80.6",
"stylelint": "16.10.0",
"stylelint-config-recess-order": "5.1.1",
"stylelint-config-standard-scss": "13.1.0"
},
"engines": {
"node": ">=22"
}
}