-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.44 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
{
"name": "web-component-template",
"type": "module",
"version": "1.0.0",
"description": "Simple, lightweight and unopinionated boilerplate code set-up for web-component-based front-end project with heavy focus on avoiding bloat and complexity that comes with external dependencies",
"engines": {
"node": ">=18.3.0"
},
"scripts": {
"preinstall": "npx force-resolutions",
"start": "node ./build-scripts/watchers/watcher.js",
"build": "node ./build-scripts/builders/build.js",
"build:prod": "npm run build -- --env prod",
"build:test": "npm run build -- --env test",
"test": "npm run build:test && web-test-runner --coverage",
"lint": "eslint **/*.ts **/*.js",
"update-snapshots": "web-test-runner --update-snapshots"
},
"author": "Elbert Oh <ellokri89@gmail.com> (https://github.com/eoh-bse)",
"license": "MIT",
"devDependencies": {
"@open-wc/semantic-dom-diff": "^0.19.7",
"@open-wc/testing": "^3.1.7",
"@types/chai": "^4.3.4",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@web/dev-server-esbuild": "^0.3.3",
"@web/test-runner": "^0.15.0",
"@web/test-runner-playwright": "^0.9.0",
"chokidar": "^3.5.3",
"clean-css": "^5.3.1",
"eslint": "^8.34.0",
"html-minifier-terser": "^7.0.0",
"terser": "^5.15.1",
"ts-lit-plugin": "^1.2.1",
"typescript": "^4.9.5"
},
"resolutions": {
"glob-parent": "6.0.2"
}
}