-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "accounts-service",
"version": "0.0.1",
"description": "Service that manages accounts on Chingu",
"main": "server/index.js",
"author": "[email protected]",
"license": "MIT",
"private": true,
"scripts": {
"start": "node server",
"dev": "nodemon server",
"test": "jest",
"test:verbose": "jest --verbose",
"lint": "npm run lint:node",
"lint:node": "eslint server/**/*.js",
"lint:graphql": "graphql lint -p accounts-service"
},
"dependencies": {
"@chingu-labs/logger": "^0.0.2",
"apollo-datasource": "^0.2.2",
"apollo-server-express": "^2.3.1",
"bcrypt": "^3.0.3",
"express": "^4.16.4",
"graphql": "^14.1.1",
"graphql-import": "^0.7.1",
"graphql-voyager": "^1.0.0-rc.26",
"https": "^1.0.0",
"morgan": "^1.9.1",
"sequelize": "^4.42.0"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-google": "^0.11.0",
"eslint-config-prettier": "^3.6.0",
"faker": "^4.1.0",
"graphql-cli": "^3.0.7",
"husky": "^1.3.1",
"jest": "^24.0.0",
"lint-staged": "^8.1.0",
"nodemon": "^1.18.9",
"pg": "^7.8.0",
"prettier": "1.16.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}