-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 822 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
{
"name": "gymmanager",
"version": "1.0.0",
"description": "Gym Manager",
"main": "server.js",
"scripts": {
"start": "npm-run-all -p nodemon browsersync",
"nodemon": "nodemon server.js",
"browsersync": "browser-sync start --proxy http://127.0.0.1:5000 --files 'public,views'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasarieiv/GymManager.git"
},
"author": "Rocketseat",
"license": "ISC",
"bugs": {
"url": "https://github.com/lucasarieiv/GymManager/issues"
},
"homepage": "https://github.com/lucasarieiv/GymManager#readme",
"dependencies": {
"express": "^4.17.1",
"method-override": "^3.0.0",
"nunjucks": "^3.2.2"
},
"devDependencies": {
"browser-sync": "^2.26.12",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5"
}
}