-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 KB
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
{
"name": "next-project-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"prettier": "lint-staged",
"test": "jest --watch"
},
"dependencies": {
"@ajna/pagination": "^1.4.13",
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.9",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/roboto": "^4.5.1",
"@reduxjs/toolkit": "^1.6.1",
"axios": "^0.23.0",
"emailjs-com": "^3.2.0",
"firebase": "^9.1.1",
"formik": "^2.2.9",
"framer-motion": "^4",
"i18next": "^21.2.4",
"moment": "^2.29.1",
"next": "11.1.2",
"next-i18next": "^8.8.0",
"next-redux-wrapper": "^7.0.5",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-geolocated": "^3.2.0",
"react-icons": "^4.3.1",
"react-redux": "^7.2.5",
"react-scroll-to-bottom": "^4.2.0",
"uuid": "^8.3.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"autoprefixer": "^10.3.5",
"babel-jest": "^27.2.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.1",
"lint-staged": "^11.1.2",
"postcss": "^8.3.7",
"prettier": "^2.4.1",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^2.2.15"
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}