-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.26 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
{
"name": "react-ts-webpack-swc-boilerplate",
"version": "0.1.0",
"description": "React boilerplate with ",
"main": "index.js",
"repository": "[email protected]:sha-el/erp/merovingian.git",
"author": "Anit Nilay <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"react",
"webpack",
"swc",
"typescript",
"reach router",
"apollo",
"hmr",
"eslint",
"prettier",
"sha-el-design",
"starter",
"boilerplate"
],
"devDependencies": {
"@swc/core": "^1.2.7",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@types/reach__router": "^1.3.5",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"fork-ts-checker-webpack-plugin": "^5.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^2.0.5",
"progress-bar-webpack-plugin": "^2.1.0",
"react-hot-loader": "^4.12.21",
"source-map-loader": "^1.0.1",
"swc-loader": "^0.1.12",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@apollo/client": "^3.2.0",
"@reach/router": "^1.3.4",
"apollo-boost": "^0.4.9",
"apollo-link": "^1.2.14",
"graphql": "^15.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^6.3.0",
"react-icons": "^3.10.0",
"sha-el-design": "^0.0.118"
},
"scripts": {
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix . && tsc --noEmit",
"build": "webpack -p --config=configs/webpack/prod.js",
"start": "webpack-dev-server --config=configs/webpack/dev.js"
},
"husky": {
"hooks": {
"pre-commit": "tsc --NoEmit && lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}