-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.99 KB
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
{
"name": "chat-backend",
"version": "1.1.0",
"description": "backend",
"author": "serikoff",
"repository": {
"type": "git",
"url": "git+https://github.com/serikoff/chat-server.git"
},
"keywords": [
"chat",
"server",
"backend"
],
"license": "UNLICENSED",
"main": "src/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/date-fns": "^2.6.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.148",
"@types/mongoose": "^5.5.31",
"@types/multer": "^1.3.10",
"@types/node": "^12.12.7",
"@types/nodemon": "^1.19.0",
"@types/passport": "^1.0.2",
"@types/socket.io": "^2.1.4",
"@types/validator": "^10.11.3",
"babel-preset-es2017": "^6.24.1",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"cloudinary": "^1.18.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"json-server": "^0.15.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.7.10",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^2.2.1",
"socket.io": "^2.3.0",
"validator": "^12.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"babel-polyfill": "^6.26.0",
"nodemon": "^1.19.4",
"ts-node": "^8.5.0",
"typescript": "^3.7.5"
}
}