-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "simple-shop-api",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:MeninoNias/simple-shop-api.git",
"author": "Ananias Raphael <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "ts-node-dev ./src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"start:dev": "npx prisma migrate deploy && npm start",
"lint": "eslint src/**/*.{js,ts,tsx}"
},
"dependencies": {
"@prisma/client": "^5.17.0",
"@types/express": "^4.17.21",
"@types/node": "^22.1.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.14",
"simple-shop-api": "file:",
"winston": "^3.13.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemailer": "^6.4.15",
"eslint": "9.x",
"globals": "^15.9.0",
"prisma": "^5.17.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
}
}