-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.62 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
{
"name": "crudx",
"version": "0.0.26",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"dep": "nx dep-graph",
"format": "prettier --write .",
"lint": "nx run-many --all --target=lint",
"example:dev": "yarn start example --port=3333",
"example:build": "yarn build example",
"example:run": "yarn start example --prod --port=3333",
"example:graphql": "graphql-codegen --config apps/example/codegen.yml",
"example:graphql:api": "graphql-codegen --config apps/example/codegen-api.yml",
"build:lib:common": "yarn build common",
"build:lib:core": "yarn build core",
"build:lib:mui": "yarn build mui",
"build:libs": "yarn build:lib:common && yarn build:lib:core && yarn build:lib:mui",
"release": "yarn nx run workspace:version --releaseAs=patch && yarn build:libs",
"release:minor": "yarn nx run workspace:version --releaseAs=minor && yarn build:libs",
"release:major": "yarn nx run workspace:version --releaseAs=major && yarn build:libs"
},
"dependencies": {
"@apollo/client": "^3.8.5",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@iconify/react": "^4.1.1",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.18",
"@nx/next": "16.6.0",
"@webbyx/mui": "^0.0.24",
"@webbyx/next-js": "^0.0.2",
"animate.css": "^4.1.1",
"classnames": "^2.3.2",
"currency-symbol-map": "^5.1.0",
"graphql": "^16.8.1",
"isomorphic-unfetch": "^4.0.2",
"lodash": "^4.17.21",
"next": "13.4.1",
"next-translate": "^2.5.3",
"nookies": "^2.5.2",
"numeral": "^2.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-is": "^18.2.0",
"react-perfect-scrollbar": "^1.5.8",
"react-use": "^17.4.0",
"stylis": "^4.3.0",
"stylis-plugin-rtl": "^2.1.1",
"tslib": "^2.3.0",
"zustand": "^4.4.1"
},
"devDependencies": {
"@babel/preset-react": "^7.14.5",
"@emotion/babel-plugin": "11.11.0",
"@graphql-codegen/add": "^5.0.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-document-nodes": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^4.0.0",
"@jscutlery/semver": "^3.1.0",
"@nx/cypress": "16.6.0",
"@nx/eslint-plugin": "16.6.0",
"@nx/jest": "16.6.0",
"@nx/js": "16.6.0",
"@nx/linter": "16.6.0",
"@nx/react": "16.6.0",
"@nx/rollup": "16.6.0",
"@nx/workspace": "16.6.0",
"@rollup/plugin-url": "^7.0.0",
"@svgr/rollup": "^8.0.1",
"@swc/plugin-emotion": "^2.5.67",
"@testing-library/react": "14.0.0",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.196",
"@types/node": "18.14.2",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-jest": "^29.4.1",
"core-js": "^3.32.0",
"cypress": "^12.16.0",
"eslint": "~8.15.0",
"eslint-config-next": "13.4.1",
"eslint-config-prettier": "8.1.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",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"nx": "16.6.0",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.1.3"
}
}