-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1021 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 1021 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "mykes_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npx tsc",
"start": "npx tsx ./index.ts",
"dev": "npx tsx ./index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.11.0",
"cors": "^2.8.5",
"csv": "^6.3.1",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"mysql": "^2.18.1",
"pg": "^8.11.3",
"serve": "^14.2.1",
"sql": "^0.78.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.25",
"nodemon": "^3.1.0",
"prisma": "^5.11.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
},
"engines": {
"node": "21.4.0",
"npm": "10.4.0"
},
"nodemonConfig": {
"ext": "js",
"ignore": [
"*.test.ts",
"db/*"
],
"delay": "2"
}
}