-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "diggydb-nodejs",
"version": "0.0.3",
"description": "Use Amazon Route53 as a super fast and reliable DB 🚀",
"main": "dist/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/njbmartin/diggydb-nodejs.git",
"author": "Nicholas Martin <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"aws-sdk": "^2.874.0",
"ts-node": "^9.1.1",
"uuid": "^8.3.2"
},
"files": [
"dist/*"
],
"scripts": {
"clean": "rimraf dist",
"start": "ts-node example",
"build": "tsc",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx"
},
"keywords": [
"diggydb",
"database",
"documentdb",
"node",
"aws",
"route53"
],
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.1",
"@types/node": "^14.14.36",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"prettier": "^2.2.1",
"release-it": "^14.5.0",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3",
"yalc": "^1.0.0-pre.50"
}
}