generated from Iraq-RBC-Capstones-2021/Next-Redux-Project-Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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": "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": {
"@reduxjs/toolkit": "^1.6.1",
"emailjs-com": "^3.2.0",
"firebase": "^9.1.3",
"i18next": "^21.3.3",
"next": "11.1.2",
"next-redux-wrapper": "^7.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-redux": "^7.2.5",
"react-redux-firebase": "2.5.1",
"react-select": "^5.1.0",
"redux-firestore": "^0.15.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^4.0.0-beta.3",
"@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"
]
}
}