-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "@reyah/api-sdk",
"version": "1.1.22",
"description": "Reyah API software development kit for developers written in TypeScript",
"main": "dist/reyah.sdk.js",
"types": "dist",
"files": [
"dist"
],
"scripts": {
"start": "node dist/src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --progress --config ./webpack.common.config.js --mode production",
"lint": "eslint `find src -type f -name \"*.ts\"`",
"lint:fix": "eslint `find src -type f -name \"*.ts\"` --fix",
"gendoc": "typedoc --out docs src/index.ts"
},
"author": "[email protected]",
"publishConfig": {
"access": "public"
},
"private": false,
"license": "ISC",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@types/graphql": "^14.2.0",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.1",
"handlebars": "^4.1.2",
"ts-loader": "^8.0.16",
"typedoc": "^0.20.32",
"typescript": "^4.1.3",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-node-externals": "^2.5.2"
}
}