-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "room-booker",
"version": "1.0.0",
"description": "room-booker GSG Project",
"main": "index.js",
"scripts": {
"start": "node ./src/backEnd/index.js",
"test": "jest",
"test:integration": "jest src/database/database.test.js",
"test:watch": "jest --watch",
"watch:client": "webpack --watch",
"watch:server": "NODE_ENV=development nodemon -x 'npm start'",
"build": "webpack",
"lint": "eslint --ext .jsx --ext .js .",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gazaskygeeks/room-booker.git"
},
"keywords": [
"room",
"booker",
"checkout"
],
"author": "4members",
"license": "MIT",
"bugs": {
"url": "https://github.com/gazaskygeeks/room-booker/issues"
},
"homepage": "https://github.com/gazaskygeeks/room-booker#readme",
"devDependencies": {
"babel-jest": "^19.0.0",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.1.1",
"jest": "^19.0.2",
"nodemon": "^1.18.3",
"pre-commit": "^1.2.2",
"supertest": "^3.1.0"
},
"dependencies": {
"async": "^2.6.1",
"babel-core": "^6.26.3",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"googleapis": "^19.0.0",
"moment": "^2.22.2",
"nock": "^9.4.3",
"node-fetch": "^1.7.3",
"pg": "^6.4.2",
"prop-types": "^15.6.2",
"react": "^15.6.2",
"react-big-calendar": "^0.13.0",
"react-bootstrap": "^0.31.5",
"react-datetime": "^2.15.0",
"react-dom": "^15.6.2",
"react-google-login": "^2.11.3",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"webpack": "^2.7.0"
},
"precommit": [
"test"
]
}