This repository has been archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.32 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
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-weather-api",
"version": "0.1.0",
"license": "MIT",
"description": "GraphQL API for React-Weather Application",
"author": "Cody Brunner <[email protected]> (https://rcws-development.com)",
"repository": "https://github.com/rockchalkwushock/react-weather-api.git",
"homepage": "https://github.com/rockchalkwushock/react-weather-api#readme",
"bugs": "https://github.com/rockchalkwushock/react-weather-api/issues",
"main": "index.js",
"scripts": {
"cm": "nps commit",
"dev": "nps dev",
"now-start": "node index.js",
"prettier": "prettier --single-quote --no-semi --write",
"start": "nps",
"test": "nps test"
},
"dependencies": {
"apollo-server-express": "^1.2.0",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"cors": "^2.8.4",
"dotenv-safe": "^4.0.4",
"express": "^4.16.2",
"express-rate-limit": "^2.9.0",
"graphql": "^0.11.7",
"graphql-tools": "^2.8.0",
"helmet": "^3.9.0",
"isomorphic-fetch": "^2.2.1",
"method-override": "^2.3.10",
"morgan": "^1.9.0"
},
"devDependencies": {
"codecov": "^3.0.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.11.0",
"eslint-config-equimper": "^2.2.1",
"eslint-config-prettier": "^2.7.0",
"husky": "^0.15.0-beta.13",
"jest": "^21.2.1",
"lint-staged": "^5.0.0",
"nodemon": "^1.12.1",
"nps": "^5.7.1",
"nps-utils": "^1.5.0",
"prettier": "^1.8.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && nps validate.withCoverage"
}
},
"jest": {
"bail": true,
"collectCoverageFrom": [
"!api/index.js",
"api/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
},
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"yarn prettier",
"git add"
]
},
"now": {
"alias": "react-weather-api",
"dotenv": true,
"env": {
"NODE_ENV": "production"
},
"files": [
"./api",
".env",
".env.example",
"index.js",
"package.json",
"yarn.lock"
],
"name": "react-weather-api"
}
}