-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.37 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
{
"name": "typescript-twilio-auth",
"version": "1.0.0",
"description": "TypeScript project in Express with phone number authentication using Twilio",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "cross-env NODE_ENV=production ts-node build/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GolgothaAksanti/typescript-twilio-auth.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GolgothaAksanti/typescript-twilio-auth/issues"
},
"homepage": "https://github.com/GolgothaAksanti/typescript-twilio-auth#readme",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.1",
"morgan": "^1.10.0",
"twilio": "^3.74.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.1",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^8.6.2"
}
}