-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 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
{
"name": "world-wide-dev",
"version": "0.1.0",
"private": true,
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "husky install",
"debug": "NODE_OPTIONS='--inspect' next dev"
},
"dependencies": {
"axios": "^0.21.1",
"firebase": "^8.7.0",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-toast": "^2.0.0",
"react-icons": "^4.2.0",
"react-loading-skeleton": "^2.2.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/react": "^17.0.13",
"@types/styled-components": "^5.1.11",
"babel-plugin-styled-components": "^1.13.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.30.0",
"eslint-config-next": "11.0.1",
"husky": "^7.0.2",
"typescript": "^4.3.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}