-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
33 lines (33 loc) · 855 Bytes
/
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
{
"name": "16personalities-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon -r tsconfig-paths/register src/app.ts",
"build": "tsc",
"start": "node -r ts-node/register -r tsconfig-paths/register dist/app.js"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.5",
"@types/tough-cookie": "^4.0.5",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.2",
"axios-cookiejar-support": "^4.0.7",
"catch-async-express": "^1.0.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"morgan": "^1.10.0",
"tough-cookie": "^4.1.3",
"zod": "^3.22.4"
}
}