forked from raulquintero13/HackTheOceanBackend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 857 Bytes
/
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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node ./node_modules/.bin/netlify-lambda serve src",
"build": "node ./node_modules/.bin/netlify-lambda build src",
"test": "node ./node_modules/.bin/jest",
"linter": "node ./node_modules/eslint/bin/eslint.js .",
"linter-fix": "node ./node_modules/eslint/bin/eslint.js . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.14.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"netlify-lambda": "^2.0.15",
"save-dev": "^0.0.1-security",
"serverless-http": "^3.0.1"
},
"devDependencies": {
"eslint": "^8.15.0",
"jest": "^28.1.0",
"netlify-cli": "^8.14.1",
"prisma": "^3.14.0",
"supertest": "^6.2.3"
},
"description": ""
}