-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"private": true,
"name": "@v8tenko/personal",
"type": "module",
"scripts": {
"prepare": "husky install",
"build": "webpack --env mode=production",
"dev": "webpack serve"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@v8tenko/re-html": "file:src/re-html",
"babel-loader": "^9.1.3",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-jest": "^3.0.2",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.2",
"jsdom": "^22.1.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"prettier-package-json": "^2.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"prettier-package-json": {
"tabWidth": 4
}
}