-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
43
44
{
"name": "template-typescript-react-with-babel",
"version": "1.0.0",
"description": "base project setting with React,Typescript,Webpack and Babel",
"main": "index.js",
"scripts": {
"start": "npm run tscheck && webpack serve",
"tscheck": "tsc",
"build": "npm run tscheck && webpack --mode production --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YeThor/template-typescript-react-with-babel.git"
},
"author": "Yesol Kim ([email protected])",
"license": "ISC",
"bugs": {
"url": "https://github.com/YeThor/template-typescript-react-with-babel/issues"
},
"homepage": "https://github.com/YeThor/template-typescript-react-with-babel#readme",
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"core-js": "^3.30.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"prettier": "^2.8.7",
"typescript": "^5.0.4",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"dependencies": {
"@babel/core": "^7.21.4",
"babel-loader": "^9.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}