-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.6 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.6 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
{
"name": "reservationsystem",
"version": "1.0.0",
"description": "A web app that enables the YDRC staff to coordinate the reservation process in their organization between all of them.",
"main": "index.js",
"scripts": {
"client-install": "cd client && npm install",
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && npm run start",
"start": "node ./server/server.js",
"server": "nodemon ./server/server.js",
"build": "cd client && npm run build",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build",
"db:query": "psql -U staff -d ydrc1 -a -f ./queries.sql"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FACK1/ReservationSystem.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACK1/ReservationSystem/issues"
},
"homepage": "https://github.com/FACK1/ReservationSystem#readme",
"dependencies": {
"bcrypt": "^3.0.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cookie": "^0.3.1",
"env2": "^2.2.2",
"express": "^4.16.4",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"pg": "^7.8.0",
"pg-hstore": "^2.3.2",
"react-big-calendar": "^0.20.3",
"sequelize": "^4.42.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^1.18.10"
}
}