-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "neardb",
"version": "0.2.3",
"description": "NearDB is a simple database that leverages cloud infrastructure like document storage and CDN to deliver an inexpensive unbelievably scalable document database optimized for reads and perfect for edge applications",
"keywords": [
"lambda",
"key-value",
"cache",
"db",
"s3",
"cdn",
"edge",
"database"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/neardb.esm.js",
"author": "leoafarias",
"license": "MIT",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "eslint '*.{js,ts,tsx}'",
"fix": "eslint '*.{js,ts,tsx}' --quiet --fix",
"prepare": "tsdx build",
"precommit": "lint-staged"
},
"peerDependencies": {},
"dependencies": {
"aws-sdk": "^2.718.0",
"axios": "^0.19.2"
},
"devDependencies": {
"@types/chance": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"chance": "^1.1.6",
"dotenv": "^8.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-no-secrets": "^0.6.8",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.5.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"s3rver": "^3.6.1",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
}
}