-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "creslin-care-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf build && tsc && npm run prod",
"prod": "nodemon build/server.js",
"clean": "rimraf build",
"dev": "ts-node-dev --files src/server.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.1.7",
"@types/multer": "^1.4.7",
"@types/shortid": "^0.0.29",
"@types/uuid": "^8.3.1",
"nodemon": "^2.0.12",
"rimraf": "^2.7.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"aws-sdk": "^2.1018.0",
"axios": "^0.21.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"firebase-admin": "^9.11.0",
"googleapis": "^84.0.0",
"inversify": "^5.1.1",
"joi": "^17.4.1",
"mysql2": "^2.2.5",
"reflect-metadata": "^0.1.13",
"shortid": "^2.2.16",
"typedi": "^0.10.0",
"uuid": "^8.3.2"
}
}