-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.4 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
{
"name": "calc",
"version": "1.0.0",
"private": true,
"description": "An estimator for hourly rates on professional services contracts",
"dependencies": {
"a11y-dialog": "2.5.2",
"async-reactor": "^1.2.2",
"axe-core": "^2.1.7",
"babel-core": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^18.0.0",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bourbon-neat": "1.9.0",
"cached-path-relative": "^1.0.2",
"classnames": "^2.2.5",
"d3-array": "^1.1.0",
"d3-axis": "^1.0.5",
"d3-format": "^1.0.2",
"d3-scale": "^1.0.4",
"d3-selection": "^1.0.4",
"d3-timer": "1",
"d3-transition": "^1.0.3",
"del": "^2.2.1",
"document-register-element": "^1.9.1",
"dotenv": "^2.0.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.9.0",
"gulp": "^4.0.0",
"gulp-clean-css": "2.4.0",
"gulp-concat": "^2.6.0",
"gulp-if": "^2.0.2",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "1.6.0",
"gulp-uglify": "^3.0.1",
"gulp-util": "^3.0.7",
"jest": "23.5.0",
"jquery": "^3.5.1",
"prop-types": "^15.6.1",
"raf": "^3.4.0",
"rc-slider": "^8.6.1",
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.0",
"react-transition-group": "1.x",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"sinon": "2.1.0",
"typescript": "^2.9.2",
"uswds": "1.6.9",
"vinyl-named": "^1.1.0",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-stream": "^5.0.0",
"xhr": "^2.4.0"
},
"resolutions": {
"lodash": "^4.17.19",
"tar": "^4.4.2",
"braces": "2.3.1",
"cached-path-relative": "1.0.2",
"mem": "^4.0.0",
"chownr": "^1.1.0",
"merge": "^1.2.1",
"handlebars": "^4.5.3",
"js-yaml": "^3.13.1",
"mixin-deep": "^2.0.1",
"set-value": "^3.0.1",
"fstream": "^1.0.12",
"lodash.mergewith": "^4.6.2",
"lodash.template": "4.5.0",
"lodash-es": "4.17.14",
"node-sass": "^4.13.1",
"elliptic": "^6.5.3",
"serialize-javascript": "^3.1.0",
"kind-of": "^6.0.3",
"minimist": "^1.2.2",
"ajv": "^6.12.3"
},
"scripts": {
"gulp": "gulp",
"eslint": "eslint --max-warnings 0 --ext .jsx --ext .js .",
"typescript": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"analyze-webpack": "webpack-bundle-analyzer -h 0.0.0.0 ./frontend/static/frontend/built/js/stats.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/18F/CALC.git"
},
"author": "18F",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/18F/CALC/issues"
},
"homepage": "https://github.com/18F/CALC#readme",
"engines": {
"node": ">=6.14.4 <7.0",
"npm": ">=3.10.0"
},
"jest": {
"roots": [
"frontend"
],
"collectCoverage": true,
"coverageReporters": [
"lcov",
"text",
"html"
],
"coverageDirectory": "./coverage/jest/",
"setupTestFrameworkScriptFile": "./frontend/source/js/data-explorer/tests/setup.js"
}
}