-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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.js-restaurant",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"commit": "cz"
},
"dependencies": {
"firebase": "^9.1.1",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"redux-persist": "^6.0.0",
"styled-components": "^5.3.1",
"sweetalert2": "^11.1.7",
"twin.macro": "^2.7.0"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.6.1",
"@svgr/webpack": "^5.5.0",
"@types/react": "17.0.26",
"@types/styled-components": "^5.1.14",
"@typescript-eslint/parser": "^3.0.0",
"autoprefixer": "^10.3.6",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^1.13.2",
"commitizen": "^4.2.4",
"cz-emoji": "^1.3.1",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.2",
"postcss": "^8.3.8",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"react-redux": "^7.2.5",
"tailwindcss": "^2.2.16",
"typescript": "4.4.3"
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
}
}