forked from jagregory/cognito-local
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.74 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "cognito-local",
"version": "0.0.0-development",
"license": "MIT",
"bin": "lib/bin/start.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib && tsc --emitDeclarationOnly --project tsconfig.build.json && esbuild $(find src -name '*.ts') --outdir=lib --platform=node --target=node14 --format=cjs && cp -r src/keys lib/keys",
"integration-test": "jest --config integration-tests/jest.config.js",
"integration-test:watch": "jest --config integration-tests/jest.config.js --watch",
"lint": "eslint src/**/*.ts && tsc --noEmit",
"start": "COGNITO_LOCAL_DEVMODE=1 ts-node src/bin/start.ts",
"start:watch": "nodemon",
"test": "jest",
"test:watch": "jest --watch",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@codedependant/semantic-release-docker": "^3.1.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@jest/globals": "^27.0.6",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/aws-lambda": "^8.10.48",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.13",
"@types/jest": "^25.2.1",
"@types/jsonwebtoken": "^8.3.9",
"@types/supertest": "^2.0.8",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"esbuild": "^0.12.15",
"esbuild-jest": "^0.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"husky": "^4.2.5",
"jest": "^27.0.6",
"jest-date-mock": "^1.0.8",
"lint-staged": "^10.1.3",
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"semantic-release": "^17.4.4",
"supertest": "^4.0.2",
"ts-node": "^10.1.0",
"typescript": "^3.8.3"
},
"dependencies": {
"aws-sdk": "^2.953.0",
"body-parser": "^1.19.0",
"boxen": "^4.2.0",
"cors": "^2.8.5",
"debug": "^4.1.1",
"deepmerge": "^4.2.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"short-uuid": "^4.2.0",
"stormdb": "^0.4.1",
"uuid": "^7.0.3"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"ext": "ts",
"exec": "yarn start"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"tsc --esModuleInterop --resolveJsonModule --noEmit",
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "https://github.com/jagregory/cognito-local.git"
}
}