-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "webpack-ts-start-template",
"version": "1.0.0",
"description": "",
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "webpack --progress --config config/webpack.prod.js",
"dev": "webpack serve --open --config config/webpack.dev.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"format:write": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint src/ . --fix",
"prepare": "husky install"
},
"keywords": [
"webpack",
"babel",
"typescript",
"jest",
"eslint",
"prettier",
"pre-commit"
],
"author": "KirillGR",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"fork-ts-checker-webpack-plugin": "^7.2.14",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"json5": "^2.2.3",
"lint-staged": "^13.2.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.8.3",
"prettier": "2.8.4",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"lodash": "^4.17.21"
},
"lint-staged": {
"*{.test.js,.test.ts}": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"*{.js,ts}": "eslint --cache --fix --max-warnings=0",
"*.{js,ts,css,md}": "prettier --write"
}
}