-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 KB
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
{
"name": "rendering-practice",
"version": "1.0.0",
"description": "",
"main": "src/server/index.ts",
"scripts": {
"dev": "webpack --config webpack.config.js --watch & nodemon ./dist/server.js",
"build": "webpack --config webpack.config.js",
"start": "nodemon ./dist/server.js",
"generate": "npm run build && node ./dist/ssg.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"assert": "^2.0.0",
"axios": "^0.26.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"express": "^4.17.3",
"fs": "^0.0.1-security",
"isomorphic-fetch": "^3.0.0",
"net": "^1.0.2",
"path": "^0.12.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"stream": "^0.0.2",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"url": "^0.11.0",
"util": "^0.12.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"nodemon": "^2.0.15",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
}
}