-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "shopify-data-faker",
"version": "1.0.0",
"repository": "https://github.com/Maxvien/shopify-data-faker.git",
"license": "MIT",
"scripts": {
"start": "ts-node",
"codegen": "npm run download-schema && graphql-codegen -c app/shopify-graphql/codegen.config.js",
"download-schema": "apollo client:download-schema -c app/shopify-graphql/apollo.config.js app/shopify-graphql/schema.gql",
"gen-pages": "ts-node app/pages.ts",
"gen-articles": "ts-node app/articles.ts",
"gen-collections": "ts-node app/collections.ts"
},
"dependencies": {
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"env-kit": "^1.0.0",
"faker": "^5.5.3",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.4",
"@graphql-codegen/introspection": "1.18.2",
"@graphql-codegen/typescript-graphql-request": "^3.1.1",
"@graphql-codegen/typescript-operations": "^1.17.16",
"@types/faker": "^5.5.4",
"@types/lodash": "^4.14.168",
"@types/node": "^15.0.2",
"apollo": "^2.33.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"keywords": [
"graphql",
"faker",
"shopify",
"shopify-api",
"data-faker",
"shopify-development",
"shopify-data-faker",
"shopify-dummy-data",
"shopify-sample-data"
]
}