-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.72 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "zync",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"db-up": "docker-compose up -d postgres",
"db-nuke": "docker-compose down --volumes --remove-orphans",
"db-seed": "prisma db seed",
"studio": "prisma studio",
"start:www": "nx serve www",
"start:backend": "nx serve backend",
"prepare": "run-s prepare:husky prepare:config",
"prepare:husky": "husky install",
"prepare:config": "node ./.setup.js",
"dx": "npm-run-all --parallel db-up start:www start:backend"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"nx affected:lint --fix --files",
"nx format:write --files"
],
"package.json": "sort-package-json"
},
"dependencies": {
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^2.0.8",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/microservices": "^9.2.0",
"@nestjs/platform-express": "^9.0.0",
"@nrwl/next": "14.5.8",
"@prisma/client": "^4.7.1",
"@react-three/cannon": "^6.4.0",
"@react-three/drei": "^9.29.1",
"@react-three/fiber": "^8.7.3",
"@tremor/react": "^1.3.0",
"axios": "^1.2.0",
"commander": "^9.4.0",
"core-js": "^3.6.5",
"inquirer": "^9.1.1",
"lamina": "^1.1.23",
"lodash": "^4.17.21",
"mdx-mermaid": "^v1.3.0",
"mermaid": "^9.1.6",
"mongoose": "^6.6.1",
"next": "12.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.34.2",
"react-query": "3",
"react-spinners": "^0.13.7",
"react-syntax-highlighter": "^15.5.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.7",
"rxjs": "^7.0.0",
"tailwind-scrollbar-hide": "^1.1.7",
"three": "^0.144.0",
"tslib": "^2.3.0",
"zod": "^3.18.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@nrwl/cli": "14.5.8",
"@nrwl/cypress": "14.5.8",
"@nrwl/eslint-plugin-nx": "14.5.8",
"@nrwl/jest": "15.2.1",
"@nrwl/js": "^14.6.4",
"@nrwl/linter": "14.5.8",
"@nrwl/nest": "15.2.1",
"@nrwl/node": "15.2.1",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "14.5.8",
"@nrwl/web": "14.5.8",
"@nrwl/workspace": "14.5.8",
"@nxrs/cargo": "^0.3.3",
"@testing-library/react": "13.3.0",
"@types/axios": "^0.14.0",
"@types/commander": "^2.12.2",
"@types/inquirer": "^9.0.1",
"@types/jest": "28.1.1",
"@types/lodash": "^4.14.191",
"@types/mongoose": "^5.11.97",
"@types/node": "18.7.1",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/react-syntax-highlighter": "^15.5.5",
"@types/three": "^0.144.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"autoprefixer": "^10.4.8",
"babel-jest": "27.5.1",
"cypress": "^10.2.0",
"eslint": "~8.15.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.1",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"nx": "14.5.8",
"postcss": "^8.4.16",
"prettier": "^2.6.2",
"prisma": "^4.7.1",
"react-test-renderer": "18.2.0",
"sort-package-json": "^1.57.0",
"tailwindcss": "^3.1.8",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typescript": "~4.7.2"
},
"prisma": {
"seed": "yarn ts-node prisma/seed.ts"
}
}