-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.47 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
{
"name": "react-shopper",
"description": "React 18 with Webpack and TypeScript",
"version": "1.0.0",
"author": "Noqx Engineering <engineering@noqx.io>",
"main": "src/index.tsx",
"license": "MIT",
"scripts": {
"start": "webpack-cli serve --mode=development --env development --open --hot",
"build": "webpack --mode=production --env production --progress",
"tsc": "tsc --noEmit",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx,js,jsx}' --fix",
"prettier": "prettier --check src"
},
"devDependencies": {
"@types/node": "16.18.25",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@types/webpack": "5.28.1",
"@types/webpack-dev-server": "4.7.1",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"eslint": "8.39.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-webpack-plugin": "3.2.0",
"fork-ts-checker-webpack-plugin": "7.3.0",
"html-webpack-plugin": "5.5.1",
"prettier": "2.8.8",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.9.5",
"webpack": "5.81.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.13.3"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}