-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.79 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
{
"name": "perscom-3.0-widget",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "node server.js",
"start:widget": "node widget-server.js",
"dev": "next dev",
"build": "next build",
"build:widget": "webpack --config webpack.widget.config.js",
"lint": "next lint",
"format": "prettier '{src,__tests__,examples}/**/*.{js,json,html}' './*.{js,json}' --write --config ./prettier.config.js",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"next": "^14.2.1",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-data-table-component": "^7.6.2",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.1",
"react-router-dom": "^6.22.0",
"react-syntax-highlighter": "^15.5.0",
"react-timeago": "^7.2.0",
"swr": "^2.2.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.1.1",
"@iframe-resizer/child": "5.3.2",
"@next/bundle-analyzer": "^14.1.0",
"@sentry/nextjs": "^7.110.1",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.1",
"@vercel/speed-insights": "^1.0.2",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.2.1",
"classnames": "^2.5.1",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"flowbite": "^2.3.0",
"flowbite-react": "^0.7",
"iron-session": "^8.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"node-static": "^0.7.11",
"parse-domain": "^8.0.1",
"postcss": "^8.4.21",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.6",
"process": "^0.11.10",
"rrule": "^2.8.1",
"styled-components": "^6.1.8",
"swc": "^1.0.11",
"tailwindcss": "^3.4.1",
"terser-webpack-plugin": "^5.3.10",
"vm-browserify": "^1.1.2",
"web-vitals": "^3.5.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"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"
]
}
}