generated from jpollard-cs/TypeScriptExpressStarter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "typescript-ddd-starter",
"version": "1.0.0",
"main": "dist/index.js",
"type": "commonjs",
"engines": {
"node": ">=18.8.0",
"npm": "*"
},
"packageManager": "[email protected]",
"scripts": {
"start": "npm run build && node dist/app.js",
"build": "rm -rf ./dist && tsc -p tsconfig.json",
"test": "ts-jest",
"lint": "eslint '**/*.js' '**/*.ts' && prettier '**/*.{js,ts,json,md}'",
"lint:fix": "eslint --fix '**/*.js' '**/*.ts' && prettier --write '**/*.{js,ts,json,md}'"
},
"keywords": [],
"author": "jpollard-cs",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^29.0.2",
"@types/luxon": "^3.0.0",
"@types/node": "^18.7.18",
"@types/ramda": "^0.28.15",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"husky": "^8.0.0",
"jest": "^29.0.3",
"pinst": "^3.0.0",
"prettier": "^2.5.1",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@fastify/circuit-breaker": "^3.0.0",
"@fastify/compress": "^6.1.1",
"@fastify/helmet": "^10.0.0",
"dotenv": "^16.0.1",
"fastify": "^4.8.1",
"graphql": "^16.6.0",
"luxon": "^3.0.1",
"mercurius": "^11.0.0",
"mercurius-codegen": "^4.0.1",
"mongoose": "^6.6.1",
"nanoid": "^4.0.0",
"ramda": "^0.28.0",
"winston": "^3.7.2"
},
"description": ""
}