-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "hackaton-hack-the-ocean",
"version": "1.0.0",
"description": "Hackaton realizado por Launch X 2022, cierre de curso Backend",
"main": "index.js",
"scripts": {
"test": "jest --runInBand --detectOpenHandles --forceExit",
"linter": "node ./node_modules/eslint/bin/eslint.js",
"linter-fix": "node ./node_modules/eslint/bin/eslint.js . --fix",
"start": "node server.js",
"serve": "node server.js",
"migrate": "npx prisma migrate dev --name init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Softnya-Consultores/Hackaton-Hack-the-Ocean.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Softnya-Consultores/Hackaton-Hack-the-Ocean/issues"
},
"homepage": "https://github.com/Softnya-Consultores/Hackaton-Hack-the-Ocean#readme",
"devDependencies": {
"eslint": "^8.15.0",
"eslint-plugin-vue": "^8.7.1",
"jest": "^27.5.1"
},
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-fileupload": "^1.3.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"mysql": "^2.18.1"
}
}