This repository was archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.73 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.73 KB
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
{
"name": "nullwind",
"version": "0.0.1",
"description": "Components system for Nullstack",
"author": "Fabio Coelho",
"license": "ISC",
"scripts": {
"start": "npx nullstack start",
"build": "npx nullstack build",
"lint": "tsc --noEmit && eslint \"**/*.{ts,nts,tsx}\" --fix",
"test": "jest",
"prepare": "husky install",
"vercel-build": "npx nullstack build --mode=ssr"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint"
]
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-jest": "^29.5.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-utils": "^3.0.0",
"git-commit-msg-linter": "^5.0.4",
"husky": "^8.0.1",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"nullstack": "^0.19.2",
"postcss-loader": "^7.0.1",
"tailwind-merge": "^1.10.0",
"tailwindcss": "^3.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@bobthered/tailwindcss-palette-generator": "^3.1.1",
"@docsearch/js": "^3.3.2",
"@floating-ui/dom": "^1.4.2",
"@mdx-js/loader": "^2.3.0",
"highlight.js": "^11.8.0",
"nullstack-heroicons": "^0.1.0",
"string-replace-loader": "^3.1.0",
"yup": "^0.32.11"
}
}