-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
104 lines (104 loc) · 2.97 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
{
"name": "example-nestjs-shopify",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test"
},
"private": true,
"dependencies": {
"@apollo/client": "^3.7.11",
"@mikro-orm/core": "^5.6.16",
"@mikro-orm/nestjs": "5.2.3",
"@mikro-orm/sqlite": "^5.6.16",
"@nestjs-shopify/auth": "5.0.0",
"@nestjs-shopify/common": "1.0.0",
"@nestjs-shopify/core": "4.0.0",
"@nestjs-shopify/express": "1.0.0",
"@nestjs-shopify/graphql": "5.0.0",
"@nestjs-shopify/webhooks": "4.0.0",
"@nestjs/common": "10.3.3",
"@nestjs/config": "3.2.0",
"@nestjs/core": "10.3.3",
"@nestjs/platform-express": "10.3.3",
"@shopify/app-bridge": "3.7.10",
"@shopify/app-bridge-react": "4.0.0",
"@shopify/app-bridge-utils": "3.5.1",
"@shopify/polaris": "^10.41.0",
"@shopify/shopify-api": "9.3.2",
"core-js": "^3.30.0",
"express": "^4.18.2",
"graphql": "^16.6.0",
"next": "13.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"reflect-metadata": "^0.1.13",
"regenerator-runtime": "0.13.11",
"rxjs": "^7.8.0",
"tslib": "^2.5.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@mikro-orm/cli": "^5.6.16",
"@nestjs/schematics": "10.1.1",
"@nestjs/testing": "10.3.3",
"@nrwl/cli": "15.9.3",
"@nrwl/cypress": "16.8.1",
"@nrwl/eslint-plugin-nx": "16.8.1",
"@nrwl/jest": "16.8.1",
"@nrwl/js": "16.8.1",
"@nrwl/linter": "16.8.1",
"@nrwl/nest": "16.8.1",
"@nrwl/next": "16.8.1",
"@nrwl/node": "16.8.1",
"@nrwl/react": "16.8.1",
"@nrwl/web": "16.8.1",
"@nrwl/webpack": "16.8.1",
"@nrwl/workspace": "16.8.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@svgr/webpack": "^6.1.2",
"@testing-library/react": "13.4.0",
"@types/express": "4.17.17",
"@types/jest": "29.5.12",
"@types/node": "18.17.0",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-jest": "29.7.0",
"css-loader": "^6.7.3",
"cypress": "^12.2.0",
"eslint": "8.49.0",
"eslint-config-next": "13.4.1",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-cypress": "2.13.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",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"nx": "16.8.1",
"prettier": "^2.8.7",
"react-refresh": "^0.14.0",
"react-test-renderer": "18.2.0",
"style-loader": "^3.3.2",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"url-loader": "^4.1.1",
"webpack": "^5.78.0",
"webpack-merge": "^5.8.0"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./db/mikro-orm.config.ts"
]
}
}