generated from timelessco/next-ts-app-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
129 lines (129 loc) · 3.58 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@adaptui/react-tailwind-docs",
"version": "1.0.0",
"private": true,
"description": "AdaptUI React Tailwind Docs",
"keywords": [
"react",
"next-react-app",
"typescript",
"adaptui",
"tailwind",
"docs"
],
"bugs": {
"url": "https://github.com/adaptui/react-tailwind-docs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaptui/react-tailwind-docs.git"
},
"license": "MIT",
"author": "Timeless <hello@timeless.co>",
"scripts": {
"postinstall": "concurrently \"husky install\" \"patch-package\"",
"dev": "next dev",
"test": "jest --watch --watchAll=false",
"test:ci": "jest --ci",
"lint": "next lint",
"lint:fix": "eslint --color --ext .js,.jsx,.ts,.tsx . --fix",
"format": "prettier --check \"./**/*.{html,css,js,jsx,ts,tsx,md,json}\"",
"format:fix": "prettier --write --list-different --cache \"./**/*.{html,css,js,jsx,ts,tsx,md,json}\"",
"format:package": "sort-package-json package.json",
"build": "next build",
"start": "next start",
"release": "release-it",
"postpublish": "pinst --enable",
"size": "yarn build && size-limit",
"commit": "gacp",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{js,jsx,tx,tsx}": [
"yarn lint:fix"
],
"**/*.{html,css,js,jsx,ts,tsx,md,json}": [
"yarn format:fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@adaptui/react": "1.0.0-alpha.9",
"@adaptui/react-tailwind": "0.1.0-alpha.5",
"@chakra-ui/hooks": "2.0.4",
"@reach/skip-nav": "0.17.0",
"ariakit": "2.0.0-next.36",
"lodash": "4.17.21",
"next": "12.2.3",
"nextra": "2.0.0-alpha.56",
"nextra-theme-docs": "2.0.0-alpha.59",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-live": "2.4.1",
"twind": "0.16.17"
},
"devDependencies": {
"@babel/core": "7.18.9",
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@mdx-js/react": "2.1.2",
"@next/eslint-plugin-next": "12.2.3",
"@release-it/conventional-changelog": "5.0.0",
"@testing-library/dom": "8.16.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "14.3.0",
"@types/jest": "28.1.6",
"@types/lodash": "4.14.182",
"@types/node": "18.0.6",
"@types/react": "17.0.47",
"@types/react-dom": "17.0.17",
"all-contributors-cli": "6.20.0",
"autoprefixer": "10.4.7",
"babel-jest": "28.1.3",
"concurrently": "7.3.0",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"gacp": "3.0.2",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"lint-staged": "13.0.3",
"patch-package": "6.4.7",
"postcss": "8.4.14",
"postinstall-postinstall": "2.1.0",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.13",
"react-icons": "4.4.0",
"release-it": "15.1.4",
"sort-package-json": "1.57.0",
"tailwindcss": "3.1.6",
"typescript": "4.7.4"
},
"gacp": {
"add": false,
"push": false,
"emoji": "emoji",
"editor": false
}
}