-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.23 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
53
{
"name": "shellops-panel",
"version": "0.5.1",
"private": false,
"scripts": {
"dev": "next dev --port 4000",
"build": "npm run clean && next build && next export",
"start": "next start",
"clean": "rimraf .next"
},
"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",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"next": "10.0.5",
"pretty-bytes": "^5.5.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-firebase-hooks": "^2.2.0",
"react-firebaseui": "^4.1.0",
"react-vis": "^1.11.7",
"sass": "^1.32.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cookie": "^0.4.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"commitizen": "^4.2.2",
"git-precommit-checks": "^3.0.6",
"husky": "^4.3.7",
"typescript": "^4.1.3"
}
}