-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2 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
{
"name": "indi-es.com",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint './**/*.js'",
"lint:fix": "eslint --fix './**/*.js'",
"lint:format": "prettier --write --ignore-unknown ./**/*",
"lint:css": "stylelint './**/*.css'",
"lint:css:fix": "stylelint --fix './**/*.css'",
"prepare": "husky install"
},
"dependencies": {
"@artsy/fresnel": "^7.1.4",
"@hookform/resolvers": "^3.3.4",
"@nivo/bar": "^0.68.0",
"@nivo/core": "^0.68.0",
"@nivo/geo": "^0.68.0",
"@nivo/pie": "^0.68.0",
"@notionhq/client": "^2.2.15",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-table": "^8.16.0",
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"datebook": "^8.0.1",
"eslint-config-next": "^14.2.2",
"feed": "^4.2.2",
"file-saver": "^2.0.5",
"leaflet": "^1.7.1",
"modern-css-reset": "^1.4.0",
"next": "^14.2.2",
"next-auth": "^4.24.7",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"react-icons": "^5.1.0",
"react-leaflet": "^4.2.1",
"react-markdown": "^9.0.1",
"react-qr-code": "^2.0.15",
"yup": "^1.4.0"
},
"devDependencies": {
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^9.0.11",
"lint-staged": ">=15.2.2",
"prettier": "^3.2.5",
"stylelint": "^16.3.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^36.0.0",
"stylelint-prettier": "^5.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}