-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
109 lines (109 loc) · 3.92 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "webpack-react-typescript-template",
"version": "2.0.0",
"license": "MIT",
"description": "Modern template to start creating react app using webpack and typescript.",
"keywords": [
"react",
"typescript",
"webpack",
"react-router",
"styled-components",
"i18next",
"eslint",
"prettier",
"husky",
"commitlint"
],
"author": "Martik Avagyan <dev@martikavagyan.com> (https://github.com/m-avagyan)",
"homepage": "https://github.com/m-avagyan/webpack-react-typescript-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/m-avagyan/webpack-react-typescript-template.git"
},
"bugs": {
"url": "https://github.com/m-avagyan/webpack-react-typescript-template/issues"
},
"scripts": {
"clean": "rm -rf ./dist",
"prepare-icons": "node prepare-icons.js",
"build": "webpack --progress --mode production",
"analyze": "webpack --progress --mode production --env analyze",
"dev": "yarn webpack serve --progress --mode none",
"start": "yarn webpack serve --progress --mode development",
"watch": "yarn webpack serve --progress --mode production",
"lint": "eslint src --ext .js,.ts,.tsx --ignore-pattern '!.*.js'",
"format": "yarn lint --fix",
"test": "jest",
"test:watch": "jest --watchAll=true",
"test:coverage": "rm -rf coverage && jest --coverage && open coverage/lcov-report/index.html",
"postinstall": "husky install"
},
"dependencies": {
"classcraft": "^1.0.1",
"i18next": "^21.9.2",
"i18next-browser-languagedetector": "^6.1.5",
"i18next-resources-to-backend": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.0",
"react-router-dom": "5.3.3",
"styled-components": "^5.3.6",
"ublob": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@svgr/webpack": "^6.5.1",
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-loader": "^9.1.2",
"babel-plugin-styled-components": "^2.0.7",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"dotenv-webpack": "^8.0.1",
"esbuild-loader": "^2.21.0",
"eslint": "^8.32.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss": "^8.4.31",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.8.3",
"prettier": "^2.8.3",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.0.0"
}
}