forked from CityOfBoston/311-description-crowdsource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.06 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
98
99
100
101
102
103
104
105
106
107
{
"name": "311-description-crowdsource",
"version": "0.0.0",
"description": "App to crowdsource descriptions of case types",
"repository": {
"type": "git",
"url": "git+https://github.com/CityOfBoston/311-description-crowdsource.git"
},
"license": "CC0-1.0",
"engines": {
"node": "8.4.0"
},
"scripts": {
"dev": "babel-watch -D -w server server",
"test": "jest",
"build": "gulp build",
"heroku-postbuild": "gulp build",
"start": "node build/server",
"storybook": "start-storybook -p 9001 -s static -c storybook",
"lint": "eslint --fix .",
"test-ci": "jest --coverage --runInBand",
"clear-babel-cache": "rm -rf node_modules/.cache/babel-loader",
"precommit": "lint-staged",
"prepush": "flow --quiet && jest --silent --no-cache --noStackTrace"
},
"lint-staged": {
"*.js": "eslint --quiet"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/",
"<rootDir>/.next/",
"<rootDir>/coverage/"
],
"collectCoverageFrom": [
"{client,pages,server}/**/*\\.js",
"!**/*.stories.js"
],
"coverageReporters": [
"lcov",
"json"
]
},
"dependencies": {
"apollo-server-hapi": "^1.1.2",
"babel-runtime": "^6.26.0",
"boom": "^5.2.0",
"compression": "^1.7.0",
"dotenv": "^4.0.0",
"emotion": "^7.3.2",
"good": "^7.3.0",
"good-console": "^6.4.0",
"good-squeeze": "^5.0.2",
"graphql": "^0.11.6",
"graphql-tools": "^1.2.2",
"hapi": "^16.6.0",
"https-proxy-agent": "^2.1.0",
"inert": "^4.2.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"next": "^4.2.3",
"nprogress": "^0.2.0",
"opbeat": "^4.16.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-emotion": "^7.3.2",
"url-search-params": "^0.10.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.6",
"@storybook/addon-storyshots": "^3.3.10",
"@storybook/react": "^3.3.10",
"apollo-codegen": "^0.17.0-alpha.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-plugin-emotion": "^7.3.2",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-watch": "^2.0.7",
"cheerio": "^1.0.0-rc.2",
"clear-require": "^2.0.0",
"del": "^3.0.0",
"eslint": "^4.7.0",
"eslint-config-prettier": "^2.5.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.0",
"eslint-plugin-react": "github:yannickcr/eslint-plugin-react#v7.4.0-rc.1",
"fetch-mock": "^5.12.2",
"flow-bin": "^0.56.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-ignore": "^2.0.2",
"gulp-plumber": "^1.1.0",
"husky": "^0.14.3",
"jest": "^21.1.0",
"lint-staged": "^4.2.1",
"prettier": "^1.7.0",
"react-test-renderer": "^16.2.0"
}
}