-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1015 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1015 Bytes
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": "connectvida",
"version": "1.0.0",
"description": "Projeto do blog connectvida.com",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"nodemon": "nodemon src/server.js",
"start": "node src/server.js",
"browsersync": "browser-sync start --proxy http://localhost:5000 --files 'public, src/views'",
"dev": "npm-run-all -p nodemon browsersync"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sheory/COnnectVIDa.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sheory/COnnectVIDa/issues"
},
"homepage": "https://github.com/sheory/COnnectVIDa#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"nunjucks": "^3.2.2"
},
"devDependencies": {
"browser-sync": "^2.26.12",
"browsersync": "0.0.1-security",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5"
}
}