-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 774 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 774 Bytes
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
{
"name": "shopping-api",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"dev": "ts-node-dev --ignore-watch node_modules --transpile-only src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cotrin/shopping-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Cotrin/shopping-api/issues"
},
"homepage": "https://github.com/Cotrin/shopping-api#readme",
"dependencies": {
"@prisma/client": "^4.1.1",
"cors": "^2.8.5",
"express": "^4.18.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.6.3",
"prisma": "^4.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}