-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 KB
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
{
"name": "ecommerce-api",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node --import=tsx --watch --env-file=.env src/index.ts",
"build": "tsc && cpy src/public/index.html dist/",
"start": "node dist/index.js && cpy src/public/index.html dist/",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^3.0.2",
"drizzle-orm": "^0.42.0",
"drizzle-zod": "^0.7.1",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"pg": "^8.14.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/lodash": "^4.17.16",
"@types/pg": "^8.11.13",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"cpy-cli": "^5.0.0",
"drizzle-kit": "^0.31.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Copstud3/ecommerce-api.git"
},
"bugs": {
"url": "https://github.com/Copstud3/ecommerce-api/issues"
},
"homepage": "https://github.com/Copstud3/ecommerce-api#readme",
"description": ""
}