-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·38 lines (38 loc) · 1.11 KB
/
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
38
{
"name": "reservation-management",
"version": "1.0.0",
"description": "Team3 - Web app for reserving rooms.",
"scripts": {
"style": "node ./node_modules/eslint/bin/eslint */*.js",
"build": "node ./node_modules/gulp/bin/gulp.js",
"test": "node ./node_modules/mocha/bin/mocha",
"start": "node server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fullstack101/reservation-management.git"
},
"dependencies": {
"body-parser": "^1.17.1",
"bower": "^1.8.0",
"express": "^4.14.1",
"mongodb": "^2.2.24",
"mongoose": "^4.9.0"
},
"author": "team3",
"license": "ISC",
"bugs": {
"url": "https://github.com/fullstack101/reservation-management/issues"
},
"homepage": "https://github.com/fullstack101/reservation-management#readme",
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.6.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0"
}
}