generated from GR34SE/react-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.37 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
{
"name": "react-typescript-starter",
"description": "Clean React 17 with TypeScript starter, without usage of create-react-app ⚛",
"version": "1.0.0",
"main": "src/index.tsx",
"repository": "https://github.com/GR34SE/react-typescript-starter.git",
"license": "MIT",
"scripts": {
"develop": "webpack-cli serve --mode=development --env development --open --hot",
"build": "webpack --mode=production --env production --progress",
"lint": "eslint './src/**/*.{ts,tsx}'"
},
"devDependencies": {
"@types/node": "14.17.21",
"@types/react": "17.0.28",
"@types/react-dom": "17.0.9",
"@types/webpack": "5.28.0",
"@types/webpack-dev-server": "4.3.1",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"fork-ts-checker-webpack-plugin": "6.3.4",
"html-webpack-plugin": "5.3.2",
"prettier": "2.4.1",
"ts-loader": "9.2.6",
"ts-node": "10.3.0",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.4.3",
"webpack": "5.58.1",
"webpack-cli": "4.9.0",
"webpack-dev-server": "4.3.1"
},
"dependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
}
}