-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "boilerplate_app",
"version": "1.0.0",
"description": "Boilerplate for a very basic React / Node.js (with Express) application",
"main": "./server/index.ts",
"scripts": {
"start": "node server/index.js",
"dev": "concurrently \"nodemon server/index.ts\" \"webpack-dev-server --open --hot\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.1.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@types/express": "^4.17.14",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"babel-loader": "^8.2.5",
"concurrently": "^7.5.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.20",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-config": "^7.0.0",
"webpack-dev-server": "^4.9.2"
}
}