-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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": "lwr-portfolio",
"version": "0.0.1",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"clean": "rm -rf node_modules __lwr_cache__ site",
"dev": "lwr dev",
"dev:compat": "lwr dev --mode compat",
"test:unit": "jest",
"test:unit:coverage": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:validate": "jest --ci --reporters='default' --reporters='./github-actions-reporter'",
"build": "lwr build --output docs",
"build:prod-compat": "lwr build --mode prod-compat --output docs",
"start": "lwr start",
"stage": "yarn build && yarn start",
"stage:prod-compat": "yarn build:prod-compat && yarn start"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"execa": "^8.0.1",
"lwc": "5.0.0",
"lwr": "0.11.12",
"onetime": "^7.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"volta": {
"node": "18.16.1"
},
"devDependencies": {
"@lwc/jest-preset": "^14.3.0",
"@sa11y/jest": "^6.5.1",
"@testing-library/dom": "^9.3.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "3.2.4"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}