-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.37 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
70
71
72
73
74
75
76
77
78
{
"name": "lorenzogm",
"private": true,
"engines": {
"yarn": "Please use npm"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"husky:commit-msg": "commitlint",
"husky:pre-commit": "lint-staged",
"cz": "cz",
"lint": "next lint",
"prepare": "husky install",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"start": "next start",
"test": "jest",
"tsc": "tsc --noEmit --skipLibCheck --esModuleInterop",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook"
},
"dependencies": {
"@heroicons/react": "1.0.6",
"lodash.merge": "4.6.2",
"lodash.startcase": "4.4.0",
"next": "12.1.5",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "7.17.9",
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@storybook/addon-actions": "6.4.22",
"@storybook/addon-essentials": "6.4.22",
"@storybook/addon-links": "6.4.22",
"@storybook/react": "6.4.22",
"@storybook/testing-react": "1.2.4",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.1.1",
"@types/jest": "27.4.1",
"@types/lodash.merge": "4.6.7",
"@types/lodash.startcase": "4.4.7",
"@types/node": "17.0.8",
"@types/react": "18.0.7",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"autoprefixer": "10.4.5",
"babel-loader": "8.2.5",
"clsx": "1.1.1",
"commitizen": "4.2.4",
"conventional-changelog-conventionalcommits": "4.6.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.14.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.1.5",
"eslint-plugin-jest-dom": "4.0.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-storybook": "0.5.11",
"eslint-plugin-testing-library": "5.3.1",
"eslint-plugin-unused-imports": "2.0.0",
"gray-matter": "4.0.3",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.4.0",
"postcss": "8.4.12",
"prettier": "2.6.2",
"react-test-renderer": "17.0.2",
"tailwindcss": "3.0.24",
"ts-jest": "27.1.4",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.6.3"
}
}