-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "elixir-medicine-finder-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "prisma generate && tsc",
"serve": "node dist/index.js",
"start": "npm run serve",
"postinstall": "npm run build",
"watch-node": "nodemon dist/index.js",
"watch-ts": "tsc -w",
"ts-node": "ts-node",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@elastic/elasticsearch": "^8.2.1",
"@prisma/client": "^3.15.2",
"@sendgrid/mail": "^7.7.0",
"apollo-server": "^3.9.0",
"apollo-server-express": "^3.9.0",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"class-validator": "^0.13.2",
"dotenv": "^16.0.1",
"express-jwt": "^7.7.5",
"fast-csv": "^4.3.6",
"graphql": "^15.8.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.3",
"prisma": "^4.1.0",
"randomstring": "^1.2.2",
"reflect-metadata": "^0.1.13",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"type-graphql": "^1.1.1",
"typescript": "^4.7.4",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/concurrently": "^7.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/randomstring": "^1.1.8",
"concurrently": "^7.2.2",
"nodemon": "^2.0.16"
}
}