generated from dustin-jw/eleventy-starter-lite
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.6 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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "trivia11y",
"version": "0.1.0",
"description": "",
"main": "index.js",
"author": "",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"prestart": "rm -rf dist",
"prebuild": "rm -rf dist",
"start": "npm run eleventy:dev & npm run sass:dev & npm run js:dev",
"build": "npm run eleventy:build && npm run sass:build && npm run js:build",
"eleventy:build": "eleventy",
"eleventy:dev": "eleventy --serve --incremental",
"sass:build": "sass ./src/css/styles.scss:./dist/styles.css --style=compressed --no-source-map",
"sass:dev": "sass ./src/css/styles.scss:./dist/styles.css --watch",
"js:build": "NODE_ENV=production node esbuild.mjs",
"js:dev": "NODE_ENV=development node esbuild.mjs",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint \"src/**/*.{css,scss,sass}\" --color --formatter verbose",
"lint:js": "eslint",
"test": "echo \"TODO: add support for testing\" && exit 0",
"update-deps": "ncu -u -x @sindresorhus/slugify && npm install"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"eslint": "^9.11.0",
"globals": "^15.9.0",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@sindresorhus/slugify": "^1.1.2",
"airtable": "^0.12.2",
"dotenv": "^16.4.5",
"esbuild": "^0.23.1",
"isomorphic-dompurify": "^2.15.0",
"marked": "^14.1.2",
"sass": "^1.78.0"
},
"browserslist": [
">0.5%",
"last 10 versions",
"Firefox ESR"
]
}