-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.96 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.96 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
68
69
70
71
{
"name": "delivery-nodejs",
"version": "1.0.0",
"description": "A Nodejs SDK for BorderlessHQ.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"start": "node dist/src/index.js",
"start:dev": "nodemon dist/src/index.js",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"prepare": "npm run build",
"build:watch": "tsc -w -p tsconfig.release.json && npm start",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest",
"coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/borderlesshq/delivery-nodejs.git"
},
"keywords": [
"sdk",
"borderlesshq"
],
"author": "SEYI-JS",
"license": "MIT",
"bugs": {
"url": "https://github.com/borderlesshq/delivery-nodejs/issues"
},
"homepage": "https://github.com/borderlesshq/delivery-nodejs#readme",
"dependencies": {
"-": "^0.0.1",
"@faker-js/faker": "^6.3.1",
"@graphql-codegen/typescript": "^2.4.11",
"@types/axios": "^0.14.0",
"axios": "^0.27.2",
"D": "^1.0.0",
"eslint": "^8.15.0",
"isomorphic-unfetch": "^3.1.0",
"tslib": "^2.4.0",
"uninstall": "^0.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@graphql-codegen/typescript-operations": "^2.4.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"babel-jest": "^28.1.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"resolutions": {
"graphql": "^15.6.1",
"**/graphql": "^15.6.1"
},
"files": [
"dist/**/*"
]
}