-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 905 Bytes
/
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
{
"name": "react-webpack-typescript-empty-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p start:dev start:api",
"start:dev": "webpack-dev-server --open --port 3000",
"prestart:api": "node tools/createMockDb.js",
"start:api": "node tools/apiServer.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.5",
"source-map-loader": "^4.0.1",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1",
"json-server": "^0.17.3",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}