-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
82 lines (82 loc) · 2.27 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "dynamodb-admin",
"version": "5.1.3",
"description": "GUI for DynamoDB. Useful for local development.",
"bin": {
"dynamodb-admin": "dist/dynamodb-admin.js"
},
"main": "dist/backend.js",
"types": "dist/lib/backend.d.ts",
"files": [
"dist",
"public",
"views"
],
"scripts": {
"build": "tsc && rimraf dist && rollup --config rollup.config.ts --configPlugin typescript",
"build:watch": "rollup --config rollup.config.ts --configPlugin typescript --watch",
"start": "nodemon dist/dynamodb-admin.js",
"lint": "eslint .",
"fix": "eslint --fix .",
"test": "vitest run",
"prepare": "npm run build",
"preversion": "npm run build",
"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": {
"@aws-sdk/client-dynamodb": "^3.693.0",
"@aws-sdk/lib-dynamodb": "^3.693.0",
"argparse": "^2.0.1",
"body-parser": "^1.20.3",
"cli-color": "^2.0.4",
"cookie-parser": "^1.4.7",
"ejs": "^3.1.10",
"errorhandler": "^1.5.1",
"express": "^4.21.1",
"lodash.pickby": "^4.6.0",
"open": "^10.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/argparse": "^2.0.17",
"@types/cli-color": "^2.0.6",
"@types/cookie-parser": "^1.4.7",
"@types/errorhandler": "^1.5.3",
"@types/express": "^5.0.0",
"@types/lodash.pickby": "^4.6.9",
"@types/node": "^20.17.6",
"concurrently": "^9.1.0",
"eslint": "9.14.0",
"eslint-config-rchl-base": "^2.0.4",
"eslint-config-rchl-typescript": "^3.0.3",
"husky": "^4.3.8",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"rollup": "^4.27.2",
"rollup-plugin-bundle-esm": "^0.1.1",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}