forked from scurry222/AirBnB_clone_v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.5 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
74
75
76
77
{
"name": "bearbnb-server",
"version": "1.0.0",
"description": "the node/graphql server for a bear-themed airbnb clone",
"main": "index.js",
"scripts": {
"dev": "env-cmd -f ./env/dev.env nodemon src/index.js --ext js,graphql --exec babel-node --presets @babel/preset-env",
"get-schema": "env-cmd -f ./env/dev.env graphql get-schema -p prisma",
"test": "env-cmd -f ./env/test.env jest --watch --verbose --runInBand --detectOpenHandles --testTimeout=40000",
"start": "node dist/index.js",
"heroku-postbuild": "babel src --out-dir dist --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmtes/bearbnb-server.git"
},
"author": "juno tesoro",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/jmtes/bearbnb-server/issues"
},
"homepage": "https://github.com/jmtes/bearbnb-server#readme",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"babel-eslint": "^10.1.0",
"env-cmd": "^10.1.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.2"
},
"dependencies": {
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"apollo-link-ws": "^1.0.20",
"apollo-utilities": "^1.3.4",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"core-js": "^3.6.5",
"cross-fetch": "^3.0.6",
"express": "^4.17.1",
"express-validator": "^6.6.0",
"graphql-binding": "^2.5.2",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.19",
"prisma-binding": "^2.3.16",
"regenerator-runtime": "^0.13.7",
"validator": "^13.1.17",
"ws": "^7.3.1",
"xss": "^1.0.8"
},
"jest": {
"globalSetup": "./tests/config/globalSetup.js",
"globalTeardown": "./tests/config/globalTeardown.js",
"testURL": "http://localhost/"
}
}