-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./dist/bin/www",
"transpile": "babel ./src --out-dir dist",
"clean": "rimraf dist",
"build": "npm-run-all clean transpile",
"dev": "redis-server & nodemon --exec babel-node ./src/bin/www.js",
"connect": "adb reverse tcp:3000 tcp:3000"
},
"dependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"app-root-path": "^3.0.0",
"aws-sdk": "^2.738.0",
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"camelcase": "^6.0.0",
"camelcase-keys": "^6.2.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "^5.0.0-alpha.8",
"express-jwt": "^6.0.0",
"http-errors": "~1.6.3",
"ioredis": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.27",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"nanoid": "^3.1.12",
"pg": "^8.3.2",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@babel/node": "^7.10.5",
"babel-plugin-root-import": "^6.5.0",
"eslint": "^7.7.0",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"peer": "^0.5.3",
"rimraf": "^3.0.2"
},
"_moduleAliases": {
"~": "./src"
},
"engines": {
"node": "12.x"
}
}