-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
48
49
50
51
52
53
{
"name": "express-trpc-react-boilerplate",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start:tsc": "tsc -b -w --preserveWatchOutput",
"start": "concurrently \"npm run start:tsc\" \"razzle start\"",
"build": "tsc -b && razzle build",
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"dependencies": {
"@trpc/client": "^9.26.2",
"@trpc/react": "^9.26.2",
"@trpc/server": "^9.26.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/ws": "^8.5.3",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-query": "3",
"react-router-dom": "^5.1.2",
"winston": "^3.8.1",
"ws": "^8.8.1",
"zod": "^3.17.10"
},
"devDependencies": {
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"@testing-library/user-event": "^10.1.0",
"@types/express": "^4.17.13",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-router-dom": "^5.1.4",
"@types/webpack-env": "^1.15.2",
"babel-preset-razzle": "4.2.15",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^0.9.0",
"razzle": "4.2.15",
"razzle-dev-utils": "4.2.15",
"typescript": "^4.0.3",
"webpack": "^4.44.1",
"webpack-dev-server": "^3.11.2"
}
}