This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.4 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
{
"name": "@cheapreats/ts-sdk",
"version": "1.13.28",
"description": "CheaprEats Typescript SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register",
"gulp": "gulp",
"add:mutation": "node ./src/scripts/addMutation.js",
"build": "rm -rf dist && npm run transpile && tsc",
"generate-docs": "./deploy-doc.sh",
"comment1": "############################## Cheapreats Package Install ##############################",
"mk-npmrc": "node ./scripts/mk-npmrc.js",
"install-graphql-enum-transpiler": "npm run mk-npmrc && npm install @cheapreats/graphql-enum-transpiler@latest --no-save && npm run rm-npmrc",
"rm-npmrc": "rm ./.npmrc",
"comment2": "############################## GraphQL Clone ##############################",
"clone-graphql": "node ./scripts/clone-graphql.js",
"transpile-gql-enums": "npx transpile-file --file=./graphql-api/graphql/enums/index.js --output=./src/enums.ts --parse-types=TsEnum",
"del-graphql": "rm -rf ./graphql-api",
"transpile": "npm run install-graphql-enum-transpiler && npm run clone-graphql && npm run transpile-gql-enums && npm run del-graphql",
"publish:types": "tsc --outDir types --emitDeclarationOnly && cd types && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CheaprEats/js-sdk.git"
},
"author": "CheaprEats",
"license": "MIT",
"bugs": {
"url": "https://github.com/CheaprEats/js-sdk/issues"
},
"homepage": "https://github.com/CheaprEats/js-sdk#readme",
"devDependencies": {
"babelify": "10.0.0",
"browserify": "^17.0.0",
"gulp": "4.0.2",
"gulp-sourcemaps": "3.0.0",
"jsdoc": "^3.6.6",
"minami": "^1.2.3",
"mocha": "8.2.1",
"typescript": "^4.1.3",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0"
},
"dependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"axios": "0.21.1",
"colors": "1.4.0",
"cross-fetch": "3.0.6",
"es6-promise": "4.2.8",
"extend": "3.0.2",
"graphql": "15.5.0",
"graphql-anywhere": "4.2.7",
"graphql-request": "3.4.0",
"graphql-tag": "2.11.0",
"isomorphic-fetch": "3.0.0",
"moment": "2.29.1",
"node-fetch": "2.6.1",
"readline-sync": "^1.4.10",
"stripe": "8.132.0",
"ts-node": "^9.1.1"
}
}