forked from PolicyEngine/policyengine-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.55 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
{
"name": "policyengine-app",
"version": "0.1.0",
"private": true,
"homepage": "https://policyengine.org",
"engines": {
"node": ">=19.0.0"
},
"dependencies": {
"@ant-design/icons": "^4.8.0",
"@n8tb1t/use-scroll-position": "^2.0.3",
"antd": "^4.24.2",
"axios": "^1.3.4",
"bootstrap": "^5.2.2",
"file-saver": "^2.0.5",
"framer-motion": "^7.6.6",
"html2canvas": "^1.4.1",
"markdown-to-jsx": "^7.1.7",
"moment": "^2.29.4",
"openai": "^3.2.1",
"plotly.js": "^2.16.1",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-detect-print": "^0.1.2",
"react-dom": "^18.2.0",
"react-ga": "^3.3.1",
"react-markdown": "^8.0.4",
"react-plotly.js": "^2.6.0",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.4.2",
"react-scripts": "^5.0.1",
"react-twitter-embed": "^4.0.4",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"styled-components": "^5.3.9",
"use-react-screenshot": "^3.0.0",
"workbox-background-sync": "^6.5.4",
"workbox-broadcast-update": "^6.5.4",
"workbox-cacheable-response": "^6.5.4",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-google-analytics": "^6.5.4",
"workbox-navigation-preload": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-range-requests": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4",
"workbox-streams": "^6.5.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"fix": "eslint --fix --ext js,jsx . && prettier -w .",
"lint": "eslint --ext js,jsx . && prettier -c ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,jsx}": "eslint --fix"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "^13.1.2",
"prettier": "^3.0.1"
}
}