-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "studentre",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "next build",
"dev": "next dev",
"dev:i18n": "concurrently \"npm run dev\" \"npm run i18n\"",
"fix": "next lint --fix",
"i18n": "typesafe-i18n --no-watch",
"lint": "next lint",
"postinstall": "npm run i18n",
"start": "next start",
"test": "jest"
},
"dependencies": {
"clsx": "^1.1.1",
"framer-motion": "^6.3.3",
"next": "12.1.6",
"next-themes": "^0.2.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-icons": "^4.3.1",
"sass": "^1.51.0",
"typesafe-i18n": "^5.4.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^13.2.0",
"@types/node": "17.0.34",
"@types/prettier": "^2.6.1",
"@types/react": "18.0.9",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.0",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-tailwindcss": "^3.0.0-beta.1",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.0",
"postcss": "^8.4.14",
"prettier": "^2.4.1",
"tailwindcss": "^3.0.7",
"typescript": "4.6.4"
}
}