-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "shellops-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "git-precommit-checks"
}
},
"dependencies": {
"cookie": "^0.4.1",
"firebase": "^8.2.2",
"next": "10.0.5",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-firebase-hooks": "^2.2.0",
"react-firebaseui": "^4.1.0",
"sass": "^1.32.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cookie": "^0.4.0",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"commitizen": "^4.2.2",
"git-precommit-checks": "^3.0.6",
"husky": "^4.3.7",
"typescript": "^4.1.3"
}
}