forked from aaronshaf/dynamodb-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "dynamodb-admin",
"version": "4.0.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"
},
"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": "^1.0.10",
"aws-sdk": "^2.614.0",
"body-parser": "^1.19.0",
"cli-color": "^2.0.0",
"ejs": "^3.0.1",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"lodash.pickby": "^4.6.0",
"open": "^7.0.2"
},
"devDependencies": {
"ejs-lint": "^1.0.1",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.7.0",
"husky": "^4.2.1",
"jest-cli": "^25.1.0",
"nodemon": "^2.0.2"
}
}