-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"name": "waterbase",
"version": "0.0.2",
"description": "SDK for waterbase",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"docs": "typedoc --mode file --readme none lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinewtech/waterbase.git"
},
"keywords": [
"SDK",
"BaaS",
"backend",
"database",
"auth"
],
"author": "Sinewave LLC",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sinewtech/waterbase/issues"
},
"homepage": "https://github.com/sinewtech/waterbase#readme",
"devDependencies": {
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged index.ts lib/**/*.ts"
}
},
"dependencies": {
"@types/jsonwebtoken": "^8.5.0",
"@types/node-localstorage": "^1.3.0",
"axios": "^0.21.0",
"form-data": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"node-localstorage": "^2.1.6"
}
}