-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 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
49
50
{
"name": "self-wiser",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"commit": "git-cz",
"pre-commit": "yarn -v"
},
"dependencies": {
"dotenv": "^11.0.0",
"firebase": "^9.6.1",
"firebase-tools": "^10.0.1",
"lint-staged": ">=10",
"mrm": "2",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"remark": "^14.0.2",
"remark-html": "^15.0.1",
"sass": "^1.45.1"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@types/node": "17.0.5",
"@types/react": "17.0.38",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.5.0",
"eslint-config-next": "12.0.7",
"husky": "^7.0.4",
"typescript": "4.5.4"
},
"resolutions": {
"ansi-regex": "5.0.1",
"firebase-tools/marked": "4.0.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}