-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) ยท 1.17 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
{
"name": "react-boiler-plate",
"version": "1.0.0",
"description": "๐ ๋๋ง์ ๋ฆฌ์กํธ ๋ณด์ผ๋ฌ ํ๋ ์ดํธ ๐ ",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack/webpack.development.js",
"build": "tsc && webpack --config ./webpack/webpack.production.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LAH1203/react-boiler-plate.git"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^17.0.47",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"esbuild-loader": "^2.20.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.1.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
}
}