forked from CityOfBoston/registry-certs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 4.12 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "registry-certs",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/CityOfBoston/registry-certs.git"
},
"license": "CC0-1.0",
"engines": {
"node": "~8.7",
"npm": "^5.6.0"
},
"scripts": {
"dev": "babel-watch -D -w server server",
"test": "jest --forceExit",
"test-ci": "jest --coverage --runInBand --forceExit",
"report-coverage": "codecov",
"build": "gulp build",
"start": "node build/server",
"storybook": "start-storybook -p 9001 -s static -c storybook",
"snapshot": "babel-node ./scripts/snapshot",
"lint": "eslint --fix .",
"clear-babel-cache": "rm -rf node_modules/.cache/babel-loader",
"generate-fixtures": "babel-node ./scripts/generate-fixtures",
"precommit": "lint-staged",
"prepush": "flow --quiet && jest --silent --no-cache --noStackTrace --lastCommit --forceExit"
},
"lint-staged": {
"*.js": "eslint --quiet"
},
"jest": {
"collectCoverage": true,
"setupFiles": [
"<rootDir>/lib/test/jest-polyfills.js",
"<rootDir>/lib/test/setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/",
"<rootDir>/\\.next/",
"<rootDir>/coverage/"
],
"collectCoverageFrom": [
"{client,lib,pages,server}/**/*\\.js",
"!**/*.stories.js",
"!lib/test/*.js"
],
"coverageReporters": [
"lcov",
"json"
]
},
"dependencies": {
"address-rfc2822": "^2.0.3",
"apollo-server-hapi": "^1.4.0",
"aws-sdk": "^2.100.0",
"babel-runtime": "^6.26.0",
"boom": "^7.2.0",
"clear-require": "^2.0.0",
"compression": "^1.6.2",
"dataloader": "^1.3.0",
"dotenv": "^5.0.0",
"good": "^8.1.1",
"good-console": "^7.1.0",
"good-squeeze": "^5.1.0",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.5",
"handlebars": "^4.0.11",
"hapi": "^17.5.2",
"http-status": "^1.0.1",
"https-proxy-agent": "^2.0.0",
"inert": "^5.1.0",
"isomorphic-fetch": "^2.2.1",
"mjml": "^4.0.0",
"mobx": "^4.1.0",
"mobx-react": "^5.0.0",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14",
"mssql": "^4.0.4",
"next": "^4.2.3",
"node-cleanup": "^2.1.2",
"nprogress": "^0.2.0",
"postmark": "^1.5.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-input-mask": "^1.2.2",
"react-proxy": "https://github.com/finneganh/react-proxy/releases/download/fix-get-calling/react-proxy-3.0.0-alpha.1.tgz",
"rollbar": "^2.4.1",
"stripe": "^5.3.0",
"styled-jsx": "^2.2.1",
"url-search-params": "^0.10.0",
"validatorjs": "^3.13.5",
"velocity-react": "^1.3.3",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"@percy-io/percy-storybook": "^1.3.3",
"@storybook/addon-actions": "^3.3.15",
"@storybook/addon-storyshots": "^3.3.15",
"@storybook/react": "^3.3.15",
"apollo-codegen": "^0.19.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"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.1",
"babel-watch": "^2.0.7",
"cheerio": "^0.22.0",
"codecov": "^2.3.1",
"del": "^3.0.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-flowtype": "^2.36.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"faker": "^4.1.0",
"fetch-mock": "^5.12.2",
"flow-bin": "^0.68.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-cli": "^1.3.0",
"gulp-ignore": "^2.0.2",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.8",
"husky": "^0.14.1",
"jest": "^22.1.4",
"json-loader": "^0.5.4",
"lint-staged": "^4.0.0",
"mockdate": "^2.0.2",
"prettier": "^1.7.0",
"prop-types": "^15.5.10",
"react-test-renderer": "^16.0.0",
"shelljs": "^0.8.1",
"through2": "^2.0.3",
"webpack-bundle-analyzer": "^2.8.1"
}
}