-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.62 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
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
{
"name": "monorepo-projectb",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"backend/*",
"packages/*"
],
"packageManager": "npm@10.1.0",
"scripts": {
"prepare": "husky install",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"lint-staged-husky": "lint-staged",
"tsc": "turbo tsc",
"test": "turbo test",
"storybook": "turbo storybook",
"storybook-build": "turbo storybook-build",
"format-lint": "prettier --config .prettierrc --check --ignore-unknown .",
"format-fix": "prettier --config .prettierrc --write --ignore-unknown -l .",
"clean": "npm exec --workspaces -- shx rm -rf node_modules .next .turbo coverage dist compiled build-next-static build-storybook-static && shx rm -rf node_modules",
"remove-turbo-cache": "shx rm -rf ./node_modules/.cache/turbo",
"update-dependencies": "turbo update-dependencies && npx npm-check-updates -u",
"start": "ts-node src/index.ts"
},
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@hookform/resolvers": "3.3.1",
"@metamask/sdk-react": "^0.20.2",
"@mui/icons-material": "5.14.12",
"@mui/material": "5.14.12",
"@openzeppelin/contracts": "^5.0.2",
"@tanstack/react-query": "4.36.1",
"@tanstack/react-query-devtools": "4.36.1",
"axios": "1.5.1",
"date-fns": "2.30.0",
"main-backend": "^1.0.0",
"next": "13.5.4",
"notistack": "^3.0.1",
"pg": "^8.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"reflect-metadata": "^0.1.13",
"typeorm": "0.3.17",
"web-react": "^1.2.1",
"zod": "3.22.4"
},
"devDependencies": {
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@storybook/addons": "7.4.6",
"@storybook/nextjs": "7.4.6",
"@storybook/react": "7.4.6",
"@storybook/theming": "7.4.6",
"@testing-library/dom": "9.3.3",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.5.1",
"@types/node": "^16.11.10",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.11",
"autoprefixer": "10.4.16",
"commitizen": "4.3.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"postcss": "8.4.31",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.5",
"shx": "0.3.4",
"storybook": "7.4.6",
"tailwindcss": "3.3.3",
"ts-jest": "29.1.1",
"ts-node": "10.7.0",
"tsup": "7.2.0",
"turbo": "1.10.15",
"typescript": "4.5.2"
},
"engines": {
"node": ">=20.8.0",
"npm": ">=10.1.0"
},
"volta": {
"node": "20.8.0"
}
}