forked from tc39/tc39.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.26 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
{
"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"
},
"scripts": {
"prebuild": "npm run sass",
"build": "eleventy",
"fix": "npm run fix:js && npm run fix:scss && npm run fix:format",
"fix:format": "npm run lint:format -- --write",
"fix:js": "npm run lint:js -- --apply",
"fix:scss": "npm run lint:scss -- --fix",
"lint": "npm run lint:js && npm run lint:scss && npm run lint:format",
"lint:format": "biome format .",
"lint:js": "biome lint .",
"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": "2.0.1",
"@11ty/eleventy-fetch": "4.0.1",
"@biomejs/biome": "^1.7.3",
"@primer/octicons": "19.9.0",
"sass": "1.77.2",
"stylelint": "16.6.1",
"stylelint-config-recess-order": "5.0.1",
"stylelint-config-standard-scss": "13.1.0"
},
"engines": {
"node": ">=22"
}
}