forked from nestjs-shopify/nestjs-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.89 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.89 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
{
"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.29.8",
"@nx/devkit": "21.6.10",
"@nx/eslint": "21.6.10",
"@nx/eslint-plugin": "21.6.10",
"@nx/jest": "21.6.10",
"@nx/js": "21.6.10",
"@nx/workspace": "21.6.10",
"nx": "21.6.10",
"reflect-metadata": "0.2.2",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"devDependencies": {
"@nestjs/cli": "10.4.5",
"@nestjs/common": "10.4.1",
"@nestjs/core": "10.4.1",
"@nestjs/platform-express": "10.4.1",
"@nestjs/platform-fastify": "10.4.1",
"@nestjs/testing": "10.4.1",
"@shopify/shopify-api": "11.14.1",
"@shopify/shopify-app-session-storage": "3.0.20",
"@types/express": "5.0.1",
"@types/jest": "30.0.0",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "24.9.1",
"@types/supertest": "6.0.3",
"@typescript-eslint/eslint-plugin": "8.52.0",
"@typescript-eslint/parser": "8.52.0",
"combinate": "^1.1.11",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"express": "4.22.1",
"fastify": "^4.26.1",
"jest": "30.2.0",
"jest-environment-node": "29.7.0",
"jsonwebtoken": "9.0.3",
"prettier": "3.7.4",
"supertest": "7.2.2",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"jest-util": "30.2.0"
},
"workspaces": [
"packages/core",
"packages/common",
"packages/auth",
"packages/webhooks",
"packages/graphql",
"packages/fastify",
"packages/express"
]
}