-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.3 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
78
79
80
81
82
83
84
85
{
"name": "letheapi",
"version": "1.0.0",
"description": "A GraphQL API for lethe",
"main": "index.js",
"author": "Brian D. Andrews",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"test": "jest --runInBand",
"test:ci": "jest --runInBand",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"dev": "cross-env NODE_ENV=development BABEL_DISABLE_CACHE=1 npx nodemon -e js,json,graphql --exec babel-node src/index.js | bunyan -o short -L",
"lint": "eslint . ",
"build": "yarn build:server",
"build:server": "babel src -d dist --source-maps --ignore \"**/*.test.js\""
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint"
}
},
"dependencies": {
"@google-cloud/storage": "^5.7.2",
"@graphql-tools/schema": "^8.3.1",
"apollo-engine": "1.1.2",
"apollo-server": "^3.6.1",
"apollo-server-express": "^3.6.1",
"bcrypt": "5.0.1",
"bunyan": "1.8.15",
"common-tags": "1.8.0",
"cors": "2.8.5",
"dataloader": "2.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-jwt": "6.0.0",
"faker": "5.5.3",
"firebase-admin": "^9.5.0",
"get-stream": "6.0.1",
"graphql": "^16.2.0",
"graphql-subscriptions": "^2.0.0",
"graphql-upload": "^13.0.0",
"http": "0.0.0",
"jsonwebtoken": "8.5.1",
"mongodb-memory-server": "6.9.6",
"mongoose": "^6.1.4",
"now-storage": "1.3.0",
"subscriptions-transport-ws": "^0.11.0",
"uuid": "^8.3.2",
"yargs": "16.2.0"
},
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.14.6",
"@babel/node": "7.14.5",
"@babel/preset-env": "7.14.5",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-plugin-inline-import": "3.0.0",
"babel-plugin-source-map-support": "2.1.3",
"cross-env": "7.0.3",
"eslint": "7.29.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.23.4",
"husky": "4.3.8",
"jest": "26.6.3",
"jest-environment-node": "26.6.2",
"nodemon": "2.0.7",
"prettier": "2.3.1"
}
}