-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
{
"name": "rad-watch-list-server",
"version": "1.0.0",
"description": "GraphQL endpoint for Rad Watch List project",
"main": "index.js",
"engines": {
"node": "^12.16.1",
"npm": "^6.13.4"
},
"scripts": {
"start": "NODE_ENV=development nodemon ./index.js",
"start:prod": "NODE_ENV=production node ./index.js",
"lint": "eslint --max-warnings 0 './**/*.js'",
"prettier": "prettier --write *.{js,json,md}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hannahcmtucker/rad-watch-list-server.git"
},
"author": "Hannah Tucker",
"license": "ISC",
"bugs": {
"url": "https://github.com/hannahcmtucker/rad-watch-list-server/issues"
},
"homepage": "https://github.com/hannahcmtucker/rad-watch-list-server#readme",
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5"
},
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^15.0.0",
"jwt-simple": "^0.5.6",
"pg-promise": "^10.5.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"nodemon": "^2.0.3",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}