-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "unify",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --coverage",
"lint-next": "next lint",
"lint": "eslint --fix --c .eslintrc.json --ext .js,.jsx,.mjs .; prettier --write --config ./.prettierrc .",
"lint:dev": "eslint --c .eslintrc.json --ext .js,.jsx,.mjs . && prettier --check --config ./.prettierrc .",
"lint:prod": "eslint --c .eslintrc.json --ext .js,.jsx,.mjs --max-warnings 0 . && prettier --check --config ./.prettierrc .",
"prepare": "husky install"
},
"dependencies": {
"@nivo/pie": "^0.85.1",
"@nivo/radar": "^0.85.1",
"@supabase/ssr": "^0.1.0",
"@supabase/supabase-js": "^2.39.8",
"axios": "^1.6.7",
"bootstrap": "^5.3.2",
"canvas": "^2.11.2",
"canvg": "^4.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"html-to-image": "^1.11.11",
"isomorphic-fetch": "^3.0.0",
"next": "^14.1.0",
"prop-types": "^15.8.1",
"react": "^18",
"react-bootstrap": "^2.10.1",
"react-dom": "^18",
"react-router-dom": "^6.22.0",
"react-svg-to-image": "^3.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"autoprefixer": "^10.4.17",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.0.3",
"postcss": "^8.4.35",
"prettier": "^3.2.4",
"supertest": "^6.3.4",
"tailwindcss": "^3.3.0"
},
"lint-staged": {
"*.{js,jsx,mjs}": [
"eslint --fix --c .eslintrc.json --ext .js,.jsx,.mjs --cache",
"prettier --write --config ./.prettierrc"
]
}
}