-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.47 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
{
"name": "wishing-well",
"version": "0.1.0",
"description": "Best Practice Microservice Sample",
"main": "dist/index.js",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"check-updates": "npx --yes npm-check-updates",
"dev": "nodemon src/index.ts",
"eslint": "eslint src",
"tsc": "tsc",
"prettier": "prettier -c src",
"test": "jest"
},
"dependencies": {
"axios": "^1.6.8",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-promise-router": "^4.1.1",
"fp-ts": "^2.16.5",
"io-ts": "^2.2.21",
"io-ts-types": "^0.5.19",
"monocle-ts": "^2.3.13",
"newtype-ts": "^0.3.5",
"pino": "^9.1.0",
"pino-http": "^10.1.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@tsconfig/node20": "^20.1.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"node-mocks-http": "^1.14.1",
"nodemon": "^3.1.0",
"pino-pretty": "^11.0.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "src"
},
"prettier": {
"trailingComma": "all"
}
}