-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·68 lines (68 loc) · 1.68 KB
/
package.json
File metadata and controls
executable file
·68 lines (68 loc) · 1.68 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "banque",
"version": "1.0.0",
"main": "bin/www",
"authors": "Jones Ogolo, Usman Akinbiyi",
"license": "MIT",
"private": true,
"scripts": {
"build": "bash -e scripts/build.sh",
"postinstall": "tsc",
"start": "node bin/www",
"test": "jest",
"test:integration": "cypress run",
"client:start": "cd client; yarn start"
},
"dependencies": {
"@hapi/joi": "17.1.0",
"bcryptjs": "2.4.3",
"compression": "1.7.4",
"cors": "2.8.5",
"date-fns": "2.10.0",
"dotenv": "8.0.0",
"express": "4.17.1",
"express-graphql": "0.9.0",
"graphql": "14.4.1",
"http-errors": "1.7.3",
"jsonwebtoken": "8.5.1",
"mailgun-js": "0.22.0",
"mongoose": "5.9.1",
"morgan": "1.9.1"
},
"devDependencies": {
"@bahmutov/add-typescript-to-cypress": "2.1.2",
"@types/bcryptjs": "2.4.2",
"@types/compression": "1.0.0",
"@types/cors": "2.8.5",
"@types/express": "4.17.0",
"@types/express-graphql": "0.8.0",
"@types/graphql": "14.2.3",
"@types/hapi__joi": "16.0.8",
"@types/http-errors": "1.6.1",
"@types/jest": "24.0.17",
"@types/jsonwebtoken": "8.3.7",
"@types/mongoose": "5.5.43",
"@types/morgan": "1.7.36",
"@types/node": "10.14.13",
"@types/supertest": "2.0.8",
"cypress": "3.4.1",
"husky": "4.2.3",
"jest": "24.9.0",
"mongodb-memory-server": "6.2.4",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"supertest": "4.0.2",
"ts-jest": "25.2.1",
"typescript": "3.5.3",
"webpack": "4.39.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"resolutions": {
"@types/node": "10.14.13",
"lodash": ">=4.17.13"
}
}