-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "insomnia-plugin-aws-amplify",
"version": "2.1.0",
"description": "Insomnia plugin for signing in via AWS Amplify",
"author": "Dan <[email protected]>",
"license": "ISC",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/danitt/insomnia-plugin-aws-amplify.git"
},
"bugs": {
"url": "https://github.com/danitt/insomnia-plugin-aws-amplify/issues"
},
"homepage": "https://github.com/danitt/insomnia-plugin-aws-amplify#readme",
"funding": "https://github.com/sponsors/danitt",
"keywords": [
"insomnia"
],
"insomnia": {
"name": "aws-amplify-auth",
"displayName": "AWS Amplify Auth",
"description": "Insomnia plugin to authenticate via AWS Amplify",
"images": {
"icon": "icon.svg"
}
},
"scripts": {
"start": "nodemon",
"build": "esbuild src/app.ts --bundle --platform=node --target=node14 --outfile=app.js",
"prepare": "npm run build",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"aws-amplify": "^5.3.16",
"dotenv": "^16.4.5",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}