-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 996 Bytes
/
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
{
"name": "@mvsde/flag.is",
"license": "ACSL",
"private": true,
"type": "module",
"engines": {
"node": ">=23"
},
"scripts": {
"dev": "URL=http://localhost:8080 eleventy --incremental --serve",
"build": "ENV=production URL=$URL eleventy",
"format": "prettier --write .",
"lint": "node --run lint:css && node --run lint:js && node --run lint:data && node --run lint:format",
"lint:css": "stylelint --ignore-path .gitignore **/*.css",
"lint:js": "eslint",
"lint:data": "node schema.js",
"lint:format": "prettier --check ."
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@eslint/js": "^9.17.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chalk": "^5.4.1",
"eslint": "^9.17.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"sharp": "^0.33.5",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"yaml": "^2.7.0"
}
}