-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@kvasir/ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:dev": "jest --watch",
"test:debug": "jest -o --watch --coverage=false",
"test": "jest --coverage=false",
"test:coverage": "jest",
"lint": "eslint --ext .tsx,.ts ."
},
"dependencies": {
"@chakra-ui/core": "^1.0.0-rc.7",
"framer-motion": "^2.9.4",
"next": "10.0.0",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.5",
"@types/react": "^16.9.54",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"commitlint-config-gitmoji": "^1.0.1",
"cz-conventional-changelog": "3.3.0",
"cz-emoji": "^1.2.2",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.0.2",
"husky": "^4.3.0",
"jest": "^26.6.1",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"yarn test --bail --findRelatedTests"
]
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
}
}