-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.4 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
{
"name": "k-trax",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"check:code": "eslint '**/*.{ts,tsx}' --max-warnings 0",
"check:style": "stylelint '**/*.{css,scss}'",
"format": "prettier --write '**/*.{yml,json,md,ts,tsx,html}'",
"lint": "next lint",
"lint:code": "eslint --fix '**/*.{ts,tsx}' --max-warnings 0",
"lint:style": "stylelint --fix '**/*.{css,scss}'",
"start": "next start",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@chakra-ui/layout": "2.1.11",
"@chakra-ui/react": "2.4.2",
"@dh-react-hooks/use-raf": "^0.9.4",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@prisma/client": "^4.16.0",
"autoprefixer": "10.4.14",
"bcrypt": "^5.1.0",
"cookie": "^0.5.0",
"cookies": "^0.8.0",
"easy-peasy": "^6.0.1",
"format-duration": "^1.4.0",
"framer-motion": "^4.1.17",
"jsonwebtoken": "^8.5.1",
"next": "13.4.4",
"next-connect": "^1.0.0",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-howler": "^5.2.0",
"react-icons": "^4.9.0",
"reset-css": "^5.0.1",
"swr": "^2.1.5",
"tailwindcss": "3.3.2",
"typescript": "5.1.3"
},
"devDependencies": {
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@tool-belt/eslint-config": "^2.1.3",
"@types/bcrypt": "^5.0.0",
"@types/node": "20.2.5",
"@types/react": "^18.2.13",
"@types/react-dom": "18.2.4",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-v8": "^0.32.2",
"babel-plugin-superjson-next": "^0.4.5",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^22.1.0",
"prettier": "^2.8.8",
"prisma": "^4.16.0",
"stylelint": "^15.8.0",
"stylelint-config-standard-scss": "^9.0.0",
"ts-node": "^10.9.1",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.2"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}