-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
52
53
54
55
{
"name": "@filimon/sudoku",
"version": "1.0.0",
"license": "MIT",
"private": "true",
"type": "module",
"sideEffects": [
"./src/**/*.element.ts",
"./src/**/*.view.ts",
"./src/**/*.worker.ts",
"./src/index.ts",
"*.css"
],
"scripts": {
"deploy": "npm run build && gh-pages -d dist",
"lint": "npx eslint",
"lint:fix": "npx eslint --fix",
"format": "npx prettier . --check --config prettier.config.js",
"format:fix": "npx prettier . --write --config prettier.config.js",
"build": "webpack --config webpack.prod.js",
"serve": "webpack serve --open --config webpack.dev.js",
"serve:prod": "webpack --config webpack.prod.js && npx http-server ./dist/"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.0",
"@types/webpack": "^5.28.5",
"@types/webpack-dev-server": "^4.7.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gh-pages": "^6.1.1",
"globals": "^15.9.0",
"html-webpack-plugin": "^5.6.0",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.9.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"tsx": "^4.18.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.1.0"
},
"dependencies": {
"@lit/context": "^1.1.2",
"lit": "^3.2.0"
}
}