forked from aaronshaf/dynamodb-admin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "dynamodb-admin",
"version": "4.4.0",
"description": "GUI for DynamoDB. Useful for local development.",
"main": "lib/backend.js",
"bin": "./bin/dynamodb-admin.js",
"scripts": {
"dev": "nodemon bin/dynamodb-admin.js",
"start": "node bin/dynamodb-admin.js",
"lint": "eslint --ext .js . && ejslint views",
"fix": "eslint --ext .js --fix .",
"test": "jest",
"postversion": "git push --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronshaf/dynamodb-viewer.git"
},
"keywords": [
"DynamoDB",
"Dynamo"
],
"author": "Aaron Shafovaloff <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaronshaf/dynamodb-viewer/issues"
},
"homepage": "https://github.com/aaronshaf/dynamodb-viewer#readme",
"dependencies": {
"argparse": "^2.0.1",
"aws-sdk": "^2.851.0",
"body-parser": "^1.19.0",
"cli-color": "^2.0.0",
"cookie-parser": "^1.4.5",
"ejs": "^3.1.6",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"lodash.pickby": "^4.6.0",
"open": "^8.2.1"
},
"devDependencies": {
"ejs-lint": "^1.1.0",
"eslint": "^8.0.1",
"eslint-plugin-jest": "^26.0.0",
"husky": "^4.3.8",
"jest": "^27.0.6",
"nodemon": "^2.0.7"
}
}