-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 978 Bytes
/
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
{
"name": "web-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node server.js",
"start:dev": "nodemon",
"start:devsync": "concurrently \"nodemon\" \"browser-sync start --proxy http://localhost:3000 --port 3001 --files 'public/**/*, views/**/*, routes/**/*' --no-notify\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/samliebl/web-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/samliebl/web-app/issues"
},
"homepage": "https://github.com/samliebl/web-app#readme",
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.21.1",
"form-data": "^4.0.1",
"microlight": "^0.0.7",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2",
"nunjucks": "^3.2.4",
"twilio": "^5.3.6"
},
"devDependencies": {
"browser-sync": "^3.0.3",
"concurrently": "^9.1.0",
"nodemon": "^3.1.7"
}
}