-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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": "twitter-clone",
"version": "0.4.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cm": "cz",
"release-same-version": "git flow release start next && git flow release finish -n next",
"release-minor": "git flow release start next && npm version minor && git flow release finish -n next",
"release-patch": "git flow release start next && npm version patch && git flow release finish -n next",
"push": "git checkout master && git push && git checkout develop && git push"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-brands-svg-icons": "^6.1.2",
"@fortawesome/free-regular-svg-icons": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.1.19",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.6",
"emoji-mart": "^3.0.1",
"firebase": "^9.9.2",
"moment": "^2.29.4",
"next": "^12.1.6",
"next-auth": "^4.10.3",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-moment": "^1.1.2",
"recoil": "^0.7.4"
},
"devDependencies": {
"@types/emoji-mart": "^3.0.9",
"@types/react": "^18.0.17",
"autoprefixer": "^10.4.8",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"postcss": "^8.4.16",
"stylelint-config-recommended": "^7.0.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}