-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "new_project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev --respawn src/app.ts",
"dev": "nodemon --exec ts-node src/app.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/csvtojson": "^2.0.0",
"@types/multer": "^1.4.5",
"@types/twilio": "^3.19.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-mongodb-session": "^2.4.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fast-csv": "^4.3.6",
"formidable": "^1.2.2",
"helmet": "^4.5.0",
"mongoose": "^5.12.4",
"multer": "^1.4.2",
"twilio": "^3.63.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.0",
"@types/connect-mongodb-session": "^2.4.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/csurf": "^1.11.1",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/formidable": "^1.2.1",
"@types/lodash": "^4.14.168",
"@types/mongoose": "^5.10.5",
"@types/node": "^14.14.41",
"@types/nodemon": "^1.19.0",
"lodash": "^4.17.21",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6"
}
}