-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.27 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "yourapp",
"version": "2023.0.0",
"license": "Apache-2.0",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"prepare": "husky install",
"postinstall": "prisma generate"
},
"private": true,
"dependencies": {
"@hexworks/cobalt-authorization": "^2023.5.0-RELEASE",
"@hexworks/cobalt-data": "^2023.5.0-RELEASE",
"@prisma/client": "^4.10.1",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-query": "^4.24.10",
"@trpc/client": "^10.13.0",
"@trpc/server": "^10.13.0",
"app-root-path": "^3.1.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"core-js": "^3.29.0",
"cors": "^2.8.5",
"daisyui": "^2.51.1",
"dotenv": "^16.0.3",
"dotenv-load": "^2.0.1",
"express": "^4.18.2",
"fp-ts": "^2.13.1",
"prisma": "^4.10.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.4.3",
"superjson": "^1.12.2",
"tslib": "^2.5.0",
"tslog": "^4.7.5",
"zod": "^3.20.6"
},
"devDependencies": {
"@babel/preset-react": "^7.14.5",
"@nrwl/cli": "15.7.2",
"@nrwl/cypress": "15.7.2",
"@nrwl/eslint-plugin-nx": "15.7.2",
"@nrwl/express": "15.7.2",
"@nrwl/jest": "15.7.2",
"@nrwl/js": "15.7.2",
"@nrwl/linter": "15.7.2",
"@nrwl/node": "15.7.2",
"@nrwl/react": "15.7.2",
"@nrwl/web": "15.7.2",
"@nrwl/webpack": "15.7.2",
"@nrwl/workspace": "15.7.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "^6.1.2",
"@swc/core": "^1.2.173",
"@swc/jest": "0.2.20",
"@testing-library/react": "14.0.0",
"@types/app-root-path": "^1.2.4",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.4.3",
"cypress": "^12.2.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-mock-extended": "^3.0.2",
"lint-staged": "^13.1.2",
"mini-css-extract-plugin": "^2.7.2",
"nx": "^15.7.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"react-refresh": "^0.10.0",
"react-test-renderer": "18.2.0",
"swc-loader": "0.1.15",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"url-loader": "^4.1.1"
},
"volta": {
"npm": "9.1.3",
"node": "16.13.0"
}
}