-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 2.24 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
{
"name": "tracker",
"version": "0.0.0",
"private": true,
"description": "",
"main": "webpack.config.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack watch --mode development --devtool eval-source-map",
"test": "jest --passWithNoTests --coverage",
"test-update": "jest -u --passWithNoTests --coverage",
"js-lint": "eslint client/**/*.js",
"stylelint": "stylelint client/**/*.sass"
},
"author": "Harris Lapiroff <[email protected]>",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"babel-plugin-add-module-exports": "^1.0.4",
"css-loader": "^6.7.1",
"eslint-config-airbnb": "^19.0.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.27.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.2.15",
"postcss-loader": "^7.0.2",
"postcss-sass": "^0.5.0",
"react-test-renderer": "^18.2.0",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"stylelint": "^15.6.0",
"stylelint-config-recommended": "^12.0.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^33.0.0",
"watchpack": "^2.2.0",
"webpack": "^5.74.0",
"webpack-bundle-tracker": "^1.6.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@visx/responsive": "^3.0.0",
"canvg": "^4.0.1",
"classlist-polyfill": "^1.2.0",
"classnames": "^2.2.5",
"d3": "^7.1.1",
"date-fns": "^2.14.0",
"element-dataset": "^2.2.6",
"invariant": "^2.2.2",
"money-math": "^2.4.3",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-animated-dataset": "github:freedomofpress/react-animated-dataset#nested-components",
"react-datepicker": "^4.8.0",
"react-dom": "^18.2.0",
"react-modal": "^3.15.1",
"regenerator-runtime": "^0.13.9",
"topojson-client": "^3.1.0"
}
}