-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
112 lines (112 loc) · 4.04 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
107
108
109
110
111
112
{
"name": "nest-shopify",
"version": "8.0.0",
"main": "dist/index.js",
"module": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"description": "Nest module for Shopify app backend",
"author": "Moritz Raguschat<[email protected]>, Pascal Garber<[email protected]>",
"license": "AGPL",
"url": "https://github.com/ArtCodeStudio/nestjs-shopify-module",
"repository": {
"type": "git",
"url": "[email protected]:ArtCodeStudio/nestjs-shopify-module.git"
},
"scripts": {
"build": "npm run lint && tsc -p tsconfig.json",
"clear": "rm -rf dist",
"watch": "npm run build -- --watch",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx --ignore-pattern '*.spec.ts' --fix && npm run typecheck",
"typecheck": "tsc -p tsconfig.json --noEmit",
"link": "npm link && npm install && npm link shopify-admin-api && cd node_modules/shopify-admin-api && npm install",
"test": "pnpify jest --config=jest.config.js",
"test:watch": "jest --watch --config=jest.config.js",
"test:coverage": "jest --config=jest.config.js --coverage --coverageDirectory=coverage",
"test:product": "SWIFTYPE=1 MONGODB=1 jest --config=jest.config.js 'src/.*products.*\\.spec.ts$'",
"test:product:watch": "SWIFTYPE=1 MONGODB=1 jest --watch --config=jest.config.js 'src/.*products.*\\.spec.ts$'",
"test:sync": "SWIFTYPE=1 MONGODB=1 jest --config=jest.config.js 'src/sync.*\\.spec.ts$'",
"test:sync:watch": "SWIFTYPE=1 MONGODB=1 jest --watch --config=jest.config.js 'src/sync.*\\.spec.ts$'"
},
"files": [
"src/",
"dist/"
],
"dependencies": {
"@graphql-tools/graphql-file-loader": "^7.3.3",
"@graphql-tools/load": "^7.5.1",
"@graphql-tools/utils": "^8.6.1",
"@nestjs/common": "^8.2.5",
"@nestjs/core": "^8.2.5",
"@nestjs/passport": "^8.1.0",
"@nestjs/platform-express": "^8.2.5",
"@nestjs/platform-socket.io": "^8.2.5",
"@nestjs/websockets": "^8.2.5",
"@types/better-sqlite3": "^7.6.9",
"@types/find-root": "^1.1.2",
"@yarnpkg/pnpify": "^3.1.1-rc.10",
"better-sqlite3": "^9.3.0",
"better-sqlite3-session-store": "^0.1.0",
"body-parser": "^1.19.1",
"cache-manager": "^3.6.0",
"cache-manager-ioredis": "^2.1.0",
"cache-manager-redis": "^0.6.0",
"concat-stream": "^2.0.0",
"debug": "^4.3.3",
"deepmerge": "^4.2.2",
"express-socket.io-session": "^1.3.5",
"find-root": "^1.1.0",
"graphql": "^16.2.0",
"graphql-request": "^3.7.0",
"ioredis": "^4.28.3",
"mongoose": "8.9.5",
"node-fetch": "^2.7.0",
"p-map": "^4.0.0",
"p-queue": "^6.6.2",
"p-retry": "^4.6.1",
"passport": "^0.5.2",
"passport-shopify": "^0.1.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.2",
"shopify-admin-api": "workspace:*",
"shopify-token": "^4.0.4",
"socket.io": "^4.4.1",
"socket.io-adapter": "^2.3.3",
"socket.io-redis": "^6.1.1",
"typescript": "4.4.4"
},
"devDependencies": {
"@nestjs/testing": "8.2.5",
"@ribajs/eslint-config": "workspace:*",
"@types/body-parser": "^1.19.2",
"@types/cache-manager": "^3.4.2",
"@types/cache-manager-ioredis": "^2.0.2",
"@types/concat-stream": "^1.6.1",
"@types/debug": "^4.1.7",
"@types/deepmerge": "^2.2.0",
"@types/elasticsearch": "^5.0.40",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.28",
"@types/express-session": "^1.17.4",
"@types/express-socket.io-session": "^1.3.6",
"@types/ioredis": "^4.28.7",
"@types/jest": "^27.4.0",
"@types/mongodb": "^3.6.20",
"@types/node": "^16.11.19",
"@types/node-fetch": "^2.6.11",
"@types/passport": "^1.0.7",
"@types/retry": "^0.12.1",
"@types/socket.io": "^3.0.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"supertest": "^6.2.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0"
}
}