-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "pokeguess-api",
"version": "0.0.0",
"description": "API para adivinar el pokemon del dia",
"author": "Carlos Nahuel Morocho",
"license": "ISC",
"type": "commonjs",
"scripts": {
"start": "node ./build/src/main.js",
"dev": "ts-node-dev ./src/index.ts",
"tsc": "tsc",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"volta": {
"node": "18.12.1"
},
"dependencies": {
"@prisma/client": "^5.7.1",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"node-cron": "^3.0.3",
"tslib": "~2.6",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "~29.5",
"@types/node": "~18",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "~6.2",
"@typescript-eslint/parser": "~6.2",
"eslint": "~8.46",
"eslint-config-prettier": "~9.0",
"eslint-plugin-jest": "~27.2",
"jest": "~29.6",
"prettier": "~3.0",
"prisma": "^5.7.1",
"rimraf": "~5.0",
"ts-api-utils": "~1.0",
"ts-jest": "~29.1",
"ts-node-dev": "^2.0.0",
"typescript": "~5.1",
"follow-redirects": ">=1.15.4"
}
}