-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.34 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
{
"name": "twilio-virtual-phone-backend",
"version": "1.0.0",
"description": "Twilio Virtual Phone Backend",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"server": "nodemon --exec ts-node-esm -r dotenv/config src/index.ts --ignore client",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"heroku-postbuild-local": "tsc && cd client && npm install && npm run build && mv build/ ../public && cd ../ && mv build/* .",
"heroku-postbuild": "tsc && cd client && npm install && npm run build && mv build/ ../public && cd ../ && mv build/* . && rm -rf client && rm -rf src && rm -rf build"
},
"author": "",
"license": "MIT",
"dependencies": {
"@okta/jwt-verifier": "^2.3.0",
"express": "^4.17.2",
"express-sslify": "^1.2.0",
"path": "^0.12.7",
"pg": "^8.7.1",
"redis": "^4.0.3",
"socket.io": "^4.4.1",
"twilio": "^3.73.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-sslify": "^1.2.2",
"@types/node": "^17.0.21",
"@types/pg": "^8.6.5",
"concurrently": "^7.0.0",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}