-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.73 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.73 KB
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": "projectname",
"version": "4.1.5",
"private": true,
"scripts": {
"build": "npm run-script lint && cross-env NODE_ENV=production webpack --config webpack.prod.js",
"build:stats": "npm run-script lint && cross-env NODE_ENV=production:stats webpack --config webpack.prod.js --profile --json > stats.json",
"dev": "cross-env NODE_ENV=development webpack serve --hot --config webpack.dev.js",
"lint": "eslint --fix ./src"
},
"sideEffects": [
"./src/pages/global.ts"
],
"dependencies": {
"lit": "^2.8.0"
},
"devDependencies": {
"@types/css-minimizer-webpack-plugin": "^3.2.0",
"@types/node": "^20.6.4",
"@types/terser-webpack-plugin": "^5.2.0",
"@types/webpack": "^5.28.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"cross-env": "^7.0.3",
"css-minimizer-webpack-plugin": "^5.0.1",
"esbuild-loader": "^4.0.2",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-lit": "^1.9.1",
"eslint-plugin-wc": "^2.0.3",
"filemanager-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"inspectpack": "^4.7.1",
"lit-css-loader": "^2.0.1",
"minify-html-literals-loader": "^1.1.1",
"sass": "^1.68.0",
"sass-loader": "^13.3.2",
"simple-progress-webpack-plugin": "^2.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"typescript-plugin-css-modules": "^5.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}