forked from GSG-K3/rooms-booker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.48 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
39
40
41
42
43
44
45
46
47
{
"name": "rooms-booker",
"version": "1.0.0",
"description": "K3 students projects # Problem GSG has many rooms and many staff members with the ability to book any room but no one other than the admin can see the name of who booked the room. # soultion",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node ./server/index.js",
"client-install": "cd client && npm install",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"dev": "concurrently \"npm run start\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-K3/rooms-booker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-K3/rooms-booker/issues"
},
"homepage": "https://github.com/GSG-K3/rooms-booker#readme",
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"concurrently": "^5.1.0",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"env2": "^2.2.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.3",
"pg": "^7.4.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1"
}
}