-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.45 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
{
"name": "react-base",
"version": "1.0.0",
"author": "Marko Savic",
"keywords": [
"javascript, typescript, react"
],
"description": "This is base React Application to get started.",
"license": "MIT",
"scripts": {
"start": "webpack serve --config webpack/webpack.config.js --env env=dev",
"build": "webpack --config webpack/webpack.config.js --env env=prod",
"checkts": "tsc --noEmit",
"prettier": "prettier --list-different \"./src/**/*.ts\" \"./src/**/*.tsx\"",
"fix-lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,json}\"",
"fix-prettier": "prettier --write \"./src/**/*.ts\" \"./src/**/*.tsx\"",
"test": "yarn prettier && yarn checkts"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.11.2"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@babel/runtime": "^7.21.5",
"@fluentui/react-components": "^9.41.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/react": "^18.2.4",
"@types/react-dom": "^18.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"axios": "^1.4.0",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fast-deep-equal": "^3.1.3",
"fp-ts": "^2.14.0",
"html-webpack-plugin": "^5.5.1",
"husky": "4",
"io-ts": "^2.2.20",
"io-ts-types": "^0.5.19",
"lint-staged": "^13.2.2",
"monocle-ts": "^2.3.13",
"prettier": "^2.8.8",
"react-refresh": "^0.14.0",
"reselect": "^4.1.8",
"style-loader": "^3.3.2",
"typescript": "^5.0.4",
"url": "^0.11.0",
"webpack": "^5.82.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"webpack-merge": "^5.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"eslint --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}