forked from PolicyEngine/policyengine-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.87 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
{
"name": "policyengine-app",
"version": "0.1.0",
"private": true,
"homepage": "https://policyengine.org",
"engines": {
"node": ">=19.0.0"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@n8tb1t/use-scroll-position": "^2.0.3",
"antd": ">4, <5",
"axios": "^1.6.3",
"bootstrap": "^5.2.2",
"file-saver": "^2.0.5",
"framer-motion": "^10.16.16",
"fuse.js": "^6.6.2",
"html2canvas": "^1.4.1",
"install": "^0.13.0",
"jsonp": "^0.2.1",
"markdown-to-jsx": "^7.4.0",
"moment": "^2.30.1",
"openai": "^4.24.1",
"plotly.js": "^2.27.1",
"prism-react-renderer": "^2.3.1",
"react": "^18.2.0",
"react-bootstrap": "^2.9.2",
"react-detect-print": "^0.1.2",
"react-dom": "^18.2.0",
"react-ga": "^3.3.1",
"react-hook-reading-time": "^1.0.0",
"react-markdown": "^8.0.7",
"react-plotly.js": "^2.6.0",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.21.1",
"react-scripts": "^5.0.1",
"react-twitter-embed": "^4.0.4",
"reading-time": "^1.5.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^3.0.0 < 4.0.0",
"styled-components": "^6.1.6",
"use-react-screenshot": "^3.0.0",
"wordwrapjs": "^5.1.0",
"workbox-background-sync": "^7.0.0",
"workbox-broadcast-update": "^7.0.0",
"workbox-cacheable-response": "^7.0.0",
"workbox-core": "^7.0.0",
"workbox-expiration": "^7.0.0",
"workbox-google-analytics": "^7.0.0",
"workbox-navigation-preload": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-range-requests": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0",
"workbox-streams": "^7.0.0"
},
"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": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1"
}
}