-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.48 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
47
48
49
50
{
"name": "react-typescript-webpack-boilerplate",
"version": "1.0.0",
"description": "A simple React template using TypeScript and Webpack ready for development",
"scripts": {
"start": "webpack serve --config webpack.dev.ts --open",
"build": "webpack --config webpack.prod.ts",
"prettify": "prettier --write \"src/**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/thejfreitas/react-typescript-webpack-boilerplate.git"
},
"keywords": [
"template",
"typescript",
"react",
"webpack"
],
"author": "Jose de Freitas",
"license": "MIT",
"bugs": {
"url": "https://github.com/thejfreitas/react-typescript-webpack-boilerplate/issues"
},
"homepage": "https://github.com/thejfreitas/react-typescript-webpack-boilerplate#readme",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@types/node": "^20.6.4",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@types/webpack": "^5.28.2",
"@types/webpack-dev-server": "^4.7.2",
"babel-loader": "^9.1.3",
"html-webpack-plugin": "^5.5.3",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}