-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "devel-server",
"version": "1.0.0",
"main": "dist/server.js",
"license": "MIT",
"heroku-run-build-script": true,
"scripts": {
"build": "tsc",
"dev": "ts-node-dev src/server.ts --inspect --transpileOnly",
"lint": "eslint src --ext ts,tsx",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js",
"start": "node dist/server.js"
},
"dependencies": {
"aws-sdk": "^2.939.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongodb": "^3.6.9",
"ms": "vercel/ms",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.34",
"uuid": "^8.3.2",
"uuidv4": "^6.2.10",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.3",
"@types/moment": "^2.13.0",
"@types/mongodb": "^3.6.19",
"@types/ms": "^0.7.31",
"@types/multer": "^1.4.6",
"@types/multer-s3": "^2.7.9",
"@types/uuid": "^8.3.1",
"@types/uuidv4": "^5.0.0",
"@types/yup": "^0.29.12",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
}
}