-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
112 lines (112 loc) · 3.29 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
{
"name": "policyengine-app",
"version": "0.1.0",
"private": true,
"homepage": "https://policyengine.org",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@auth0/auth0-react": "^2.2.4",
"@babel/preset-react": "^7.25.9",
"@n8tb1t/use-scroll-position": "^2.0.3",
"@testing-library/dom": "^10.4.0",
"@uiw/codemirror-extensions-langs": "^4.23.6",
"@uiw/codemirror-theme-github": "^4.23.6",
"@uiw/react-codemirror": "^4.23.6",
"@uiw/react-textarea-code-editor": "^3.1.0",
"antd": ">=5",
"bootstrap": "^5.3.3",
"dayjs": "^1.11.13",
"file-saver": "^2.0.5",
"framer-motion": "^11.11.11",
"fuse.js": "^7.0.0",
"html2canvas": "^1.4.1",
"jsonp": "^0.2.1",
"markdown-to-jsx": "^7.5.0",
"moment": "^2.30.1",
"openai": "^4.69.0",
"plotly.js": "^2.35.2",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-detect-print": "^0.1.2",
"react-dom": "^18.3.1",
"react-ga": "^3.3.1",
"react-helmet": "^6.1.0",
"react-hook-reading-time": "^1.0.0",
"react-markdown": "^9.0.0",
"react-plotly.js": "^2.6.0",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.27.0",
"react-scripts": "^5.0.1",
"react-to-print": "^2.15.1",
"react-twitter-embed": "^4.0.4",
"reading-time": "^1.5.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"thememirror": "^2.0.1",
"use-react-screenshot": "^4.0.0",
"wordwrapjs": "^5.1.0",
"workbox-background-sync": "^7.3.0",
"workbox-broadcast-update": "^7.3.0",
"workbox-cacheable-response": "^7.3.0",
"workbox-core": "^7.3.0",
"workbox-expiration": "^7.3.0",
"workbox-google-analytics": "^7.3.0",
"workbox-navigation-preload": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-range-requests": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.0.0",
"workbox-streams": "^7.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"eject": "react-scripts eject",
"fix": "eslint --fix --ext js,jsx . && prettier -w .",
"lint": "eslint --ext js,jsx --max-warnings 0 . && prettier -c .",
"prepare-husky": "husky"
},
"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": {
"*.{js,jsx}": "eslint --fix",
"*": "prettier -w"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.26.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.4.3",
"jest-when": "^3.6.0",
"lint-staged": "^15.2.10",
"node-fetch": "^3.3.2",
"prettier": "^3.3.3",
"resize-observer-polyfill": "^1.5.1",
"typescript": "^5.6.3",
"whatwg-fetch": "^3.6.20"
}
}