This repository was archived by the owner on May 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.46 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.46 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
{
"name": "react-typescript-starter",
"description": "Minimalist React 18 starter template with TypeScript ⚛",
"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,js,jsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx,js,jsx}' --fix"
},
"devDependencies": {
"@types/node": "22.15.22",
"@types/react": "19.1.6",
"@types/react-dom": "19.1.5",
"@types/webpack": "5.28.5",
"@types/webpack-dev-server": "4.7.2",
"@typescript-eslint/eslint-plugin": "8.33.0",
"@typescript-eslint/parser": "8.33.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.4.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-webpack-plugin": "4.2.0",
"fork-ts-checker-webpack-plugin": "9.1.0",
"html-webpack-plugin": "5.6.3",
"prettier": "3.5.3",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"tsconfig-paths-webpack-plugin": "4.2.0",
"typescript": "5.8.3",
"webpack": "5.99.9",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.1"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}