-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "crud-template-backend-mongodb",
"version": "1.0.0",
"description": "DALI Lab CRUD template w/ MongoDB",
"productionURL": "https://your-api-url.here",
"productionClientURL": "https://your-app-url.here",
"main": "src/server.js",
"repository": "https://github.com/dali-lab/crud-template-backend-mongodb",
"author": "Eric Lu <[email protected]>",
"contributors": [
"Adam McQuilkin <[email protected]>",
"Alex Lopez <[email protected]>",
"Ziray Hao <[email protected]>",
"Jack Keane <[email protected]>"
],
"license": "MIT",
"scripts": {
"lint": "eslint ./src",
"dev": "nodemon -r tsconfig-paths/register src/server.ts --exec ts-node",
"start": "NODE_OPTIONS=--max-old-space-size=8192 ts-node --transpile-only -r tsconfig-paths/register src/server.ts",
"build": "yarn install && tsc",
"prod": "yarn build dist; node dist/server.js"
},
"prisma": {
"seed": "ts-node src/db/seed.ts",
"schema": "src/db/schema.prisma"
},
"dependencies": {
"@prisma/client": "^5.11.0",
"@sendgrid/mail": "^7.7.0",
"aws-sdk": "^2.1338.0",
"axios": "^0.25.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"email-validator": "^2.0.4",
"env-var": "^7.1.1",
"express": "^4.17.2",
"express-joi-validation": "^5.0.1",
"joi": "^17.6.0",
"jwt-simple": "^0.5.6",
"mongodb": "^6.10.0",
"mongoose": "^8.7.2",
"morgan": "^1.10.0",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sharp": "^0.31.3",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.16",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"debug": "^4.3.3",
"eslint": "^8.8.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"jest-environment-node": "^27.5.1",
"jest-mock-extended": "^3.0.5",
"mockingoose": "^2.15.2",
"mongodb-memory-server": "^8.3.0",
"nodemon": "^2.0.15",
"prisma": "^5.11.0",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"uuid": "^9.0.0"
}
}