-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
{
"name": "jsify-css",
"version": "1.0.0",
"author": "Davi Guimarães Leite",
"private": true,
"license": "MIT",
"config": {
"commitizen": {
"path": "cz-emoji-conventional"
}
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -s ./public -p 6006",
"storybook:build": "build-storybook -s ./public",
"generate": "yarn plop --plopfile generators/plopfile.js",
"prepare": "husky install",
"commit": "yarn cz"
},
"dependencies": {
"@prisma/client": "^3.11.0",
"@unform/core": "^2.1.6",
"@unform/web": "^2.1.6",
"axios": "^0.26.0",
"next": "12.1.0",
"next-auth": "^4.3.1",
"next-redux-wrapper": "^7.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"styled-components": "^5.3.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/react": "^6.4.19",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"commitizen": "^4.2.4",
"commitlint-config-gitmoji": "^2.2.5",
"cz-emoji": "^1.3.1",
"cz-emoji-conventional": "^1.0.1",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"plop": "^3.0.5",
"prettier": "^2.5.1",
"typescript": "4.6.2"
}
}