-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.17 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.17 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
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
{
"name": "webpack-react-typescript-starter",
"version": "1.0.0",
"license": "MIT",
"author": "rubinj30",
"homepage": "https://github.com/rubinj30/webpack-react-typescript-starter",
"keywords": [
"react",
"webpack",
"typescript",
"styled-components",
"starter",
"boilerplate",
"eslint",
"prettier",
"react-testing-library",
"@testing-library/react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rubinj30/webpack-react-typescript-starter"
},
"scripts": {
"start": "npx webpack serve --mode development",
"build": "NODE_ENV=production npx webpack --mode production --progress",
"build:dev": "npx webpack --mode development",
"prettify": "yarn prettier \"**/*.*(js|ts|tsx)\" --ignore-path=.prettierignore --write",
"lint": "eslint src --ext .ts,.tsx && yarn prettify",
"test": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged --verbose"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@testing-library/react": "^11.2.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"@types/webpack": "^4.41.25",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.10.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "5.0.0-alpha.3",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^3.11.0"
}
}