-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.33 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "astro-api",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"start": "node ./dist/server.js",
"build": "tsc --project ./",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --transpile-only ./src/server.ts",
"lint": "eslint src/ .",
"lint-f": "eslint src/ . --fix",
"pretty": "prettier --check src/",
"pretty-f": "prettier --write src/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.1.0",
"@vendia/serverless-express": "^4.10.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"uuid": "^8.3.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.108",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"prettier": "^2.7.1",
"prisma": "^4.1.0",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}