forked from nestjs-shopify/nestjs-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.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
{
"name": "nestjs-shopify",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "nx affected:build",
"benchmark": "nx affected:bench",
"format": "prettier --write \"{packages,integration,benchmarks,tools}/**/*.ts\"",
"lint": "nx affected:lint",
"release": "nx run-many --target=build && npx changeset publish",
"test": "nx affected:test",
"test:integration": "NODE_NO_WARNINGS=1 nx test integration"
},
"private": true,
"dependencies": {
"@changesets/cli": "2.27.1",
"@nrwl/cli": "15.9.3",
"@nrwl/eslint-plugin-nx": "16.10.0",
"@nrwl/jest": "16.10.0",
"@nrwl/js": "16.10.0",
"@nrwl/linter": "16.10.0",
"@nrwl/workspace": "16.10.0",
"nx": "16.10.0",
"reflect-metadata": "0.1.13",
"tslib": "2.6.2",
"typescript": "5.3.3"
},
"devDependencies": {
"@nestjs/cli": "10.2.1",
"@nestjs/common": "10.3.0",
"@nestjs/core": "10.3.0",
"@nestjs/platform-express": "10.3.0",
"@nestjs/testing": "10.3.0",
"@shopify/shopify-api": "9.0.1",
"@shopify/shopify-app-session-storage": "2.0.3",
"@types/jest": "29.5.11",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "18.19.7",
"@types/supertest": "2.0.16",
"@typescript-eslint/eslint-plugin": "6.18.0",
"@typescript-eslint/parser": "6.18.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"jsonwebtoken": "9.0.2",
"prettier": "3.1.1",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.2"
},
"workspaces": [
"packages/core",
"packages/auth",
"packages/webhooks",
"packages/graphql"
]
}