forked from agustinusnathaniel/spoker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.26 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "spoker",
"version": "1.16.8",
"private": true,
"author": "sozonome",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev",
"build": "next build",
"build:turbo": "npx turbo build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm format",
"type-check": "tsc --noEmit",
"check:turbo": "npx turbo lint type-check",
"format": "prettier --write src",
"release": "cross-env HUSKY=0 standard-version",
"push-release": "git push --follow-tags origin dev",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"up-interactive": "pnpm up -i",
"up-latest": "pnpm up-interactive -L",
"generate-rules": "ts-node tools/generateRules.ts",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/gabarito": "^5.0.1",
"@fontsource/gantari": "^5.0.8",
"@hookform/resolvers": "^3.3.2",
"@sentry/nextjs": "^7.75.1",
"firebase": "^10.5.0",
"framer-motion": "^10.16.4",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.2",
"next": "^14.0.0",
"next-seo": "^6.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fast-compare": "^3.2.2",
"react-hook-form": "^7.47.0",
"react-icons": "^4.11.0",
"react-rewards": "^2.0.4",
"react-sortablejs": "^6.1.4",
"react-textarea-autosize": "^8.5.3",
"sortablejs": "^1.15.0",
"twemoji": "14.0.2",
"valibot": "^0.19.0",
"zustand": "^4.4.4"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@chakra-ui/storybook-addon": "^5.0.1",
"@commitlint/config-conventional": "^18.1.0",
"@commitlint/cz-commitlint": "^18.2.0",
"@jahed/firebase-rules": "^1.1.0",
"@storybook/addon-a11y": "^7.5.1",
"@storybook/addon-actions": "^7.5.1",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
"@storybook/addon-mdx-gfm": "^7.5.1",
"@storybook/addon-storysource": "^7.5.1",
"@storybook/nextjs": "^7.5.1",
"@storybook/react": "^7.5.1",
"@types/lodash-es": "^4.17.10",
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"@types/sortablejs": "^1.15.4",
"all-contributors-cli": "^6.26.1",
"babel-loader": "^9.1.3",
"commitizen": "^4.3.0",
"commitlint": "^18.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.0",
"eslint-config-sznm": "^2.0.2",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"next-sitemap": "^4.2.3",
"prettier": "^3.0.3",
"standard-version": "^9.5.0",
"storybook": "^7.5.1",
"storybook-addon-performance": "^0.17.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2"
},
"repository": {
"url": "https://github.com/sozonome/spoker"
},
"nextBundleAnalysis": {
"budget": null,
"budgetPercentIncreaseRed": 20,
"showDetails": true
},
"engines": {
"node": ">=16.8.x",
"pnpm": ">=8"
}
}