-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "openfec",
"version": "1.0.0",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/fecgov/openFEC.git"
},
"scripts": {
"build": "npm run lint && webpack --config webpack.production.config.js",
"develop": "webpack-dev-server --config webpack.config.js --mode development",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint ./src/**/*.js",
"format:lint": "npm run format && npm run lint"
},
"dependencies": {
"@braintree/sanitize-url": "^6.0.0",
"immutable": "^3.8.2",
"minimist": "^1.2.6",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"async": "^2.6.4",
"swagger-ui-dist": "4.5.0"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"babel-loader": "^9.1.3",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"css-loader": "^6.8.1",
"eslint": "^8.54.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-webpack-plugin": "^4.0.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"mini-css-extract-plugin": "^2.7.6",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"prettier": "^3.1.0",
"react-hot-loader": "^4.1.0",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"engines": {
"node": "22.1.0",
"npm": "10.7.0"
}
}