-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.64 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
{
"name": "marissa-huysentruyt-portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"watch:styles": "sass src/scss/main.scss:dist/css/main.css --watch",
"build:styles": "sass src/scss/main.scss:dist/css/main.css --no-source-map",
"watch:scripts": "esbuild src/scripts/*.js --format=esm --bundle=true --outdir=dist/scripts --watch --sourcemap=inline",
"build:scripts": "esbuild src/scripts/index.js --format=esm --bundle=true --outfile=dist/scripts/index.js --minify=true",
"watch:eleventy": "npx @11ty/eleventy --serve --incremental",
"build:eleventy": "npx @11ty/eleventy",
"prestart": "rm -rf ./dist",
"start": "run-p build:* watch:*",
"build": "npm-run-all build:*",
"lint:js": "eslint",
"lint:scss": "stylelint **/*.scss",
"lint": "run-s lint:js lint:scss",
"test": "jest",
"test:watch": "npm run test -- --watchAll",
"test:e2e": "cypress open --e2e"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"axe-core": "^4.10.2",
"babel-jest": "^29.7.0",
"cypress": "^13.15.1",
"esbuild": "^0.20.2",
"esbuild-jest": "^0.5.0",
"eslint": "^9.17.0",
"eslint-plugin-cypress": "^4.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"sass": "^1.77.8",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^14.0.0"
},
"dependencies": {
"@11ty/eleventy-img": "^5.0.0",
"autoprefixer": "^10.4.19"
},
"engines": {
"node": ">=20"
}
}