-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ssr",
"version": "0.0.1",
"description": "node server for ssr",
"main": "dist/bundle.js",
"scripts": {
"dev:watch": "webpack --config webpack.config.js --watch",
"dev:serve": "node --watch dist/bundle.js",
"dev": "NODE_ENV=development npm-run-all --parallel dev:*"
},
"keywords": [],
"author": "orobos654@gmail.com",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@linaria/babel-preset": "^4.5.4",
"@linaria/core": "^4.5.4",
"@linaria/react": "^4.5.4",
"@linaria/webpack-loader": "^4.5.4",
"@types/koa": "^2.13.7",
"@types/koa__router": "^12.0.0",
"@types/koa-logger": "^3.1.4",
"@types/koa-static": "^4.0.2",
"@types/koa-useragent": "^2.1.2",
"@types/node": "^20.4.5",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"koa-useragent": "^4.1.0",
"mini-css-extract-plugin": "^2.7.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@koa/router": "^12.0.0",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.4.0",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"koa": "^2.14.2",
"koa-logger": "^3.2.1",
"koa-static": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"redux": "^4.2.1",
"zod": "^3.21.4"
}
}