-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.78 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": "todo-app-booster-cqrs",
"description": "A simple TODO App using the Booster Framework",
"version": "0.1.0",
"author": "Flor De Bock",
"dependencies": {
"@boostercloud/framework-common-helpers": "^2.9.2",
"@boostercloud/framework-core": "^2.9.2",
"@boostercloud/framework-provider-aws": "^2.9.2",
"@boostercloud/framework-types": "^2.9.2",
"chai": "^5.1.0",
"ts-sinon": "^2.0.2",
"tslib": "^2.4.0"
},
"devDependencies": {
"@boostercloud/framework-provider-aws-infrastructure": "^2.9.2",
"@boostercloud/framework-provider-local": "^2.9.2",
"@boostercloud/framework-provider-local-infrastructure": "^2.9.2",
"@boostercloud/metadata-booster": "^2.9.2",
"@types/chai": "^4.3.14",
"@types/jsonwebtoken": "9.0.1",
"@types/mocha": "10.0.1",
"@types/node": "^18.18.2",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"graphql": "^16.6.0",
"mocha": "10.2.0",
"nyc": "15.1.0",
"prettier": "2.3.0",
"rimraf": "^5.0.0",
"ts-node": "^10.9.2",
"ts-patch": "3.1.2",
"typescript": "5.1.6"
},
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"homepage": "",
"license": "MIT",
"main": "dist/index.js",
"repository": "https://github.com/fldbock/todo-app-booster-cqrs",
"scripts": {
"prepare": "ts-patch install -s",
"lint:check": "eslint --ext '.js,.ts' **/*.ts",
"lint:fix": "eslint --quiet --fix --ext '.js,.ts' **/*.ts",
"build": "tsc -b tsconfig.json",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"test": "nyc --extension .ts mocha --forbid-only \"src/test/test.js\""
},
"types": "lib/index.d.ts"
}