-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.72 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
{
"name": "@damilaredev/core",
"version": "0.0.0",
"description": "",
"packageManager": "pnpm@8.11.0",
"type": "module",
"scripts": {
"docs": "pnpm -C docs run dev",
"docs:build": "npm -C docs run build",
"docs:serve": "npm -C docs run serve",
"docs:typecheck": "cd docs && pnpm typecheck",
"typecheck": "tsc --noEmit",
"typecheck:why": "tsc --noEmit --explainFiles > explainTypes.txt",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix ",
"format:test": "prettier --cache --check \"**/*.{ts,tsx}\"",
"format:write": "prettier --cache --write \"**/*.{ts,tsx}\"",
"release": "bumpp package.json packages/*/package.json --commit --push --tag && pnpm -r publish --access public",
"build": "pnpm -r --filter='./packages/**' run build",
"dev": "NODE_OPTIONS=\"--max-old-space-size=8192\" pnpm -r --parallel --filter='./packages/**' run dev",
"build:modals": "pnpm -r --filter='./packages/modals' run build",
"build:hooks": "pnpm -r --filter='./packages/hooks' run build",
"start:components": "pnpm -r --filter='./examples/components' run dev",
"clean": "rimraf packages/**/*/{dist,lib,cjs,esm}",
"test": "vitest run",
"test:utils": "pnpm -r --filter=./packages/utils run test",
"test:modals": "npm -C packages/modals run test",
"release:prepare": "pnpm clean && pnpm test",
"test:all": "CI=true pnpm -r --stream run test --allowOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/damilaredevone/core.git"
},
"author": "Damilare Anjorin",
"license": "MIT",
"bugs": {
"url": "https://github.com/damilaredevone/core/issues"
},
"devDependencies": {
"@antfu/ni": "^0.21.0",
"@babel/core": "^7.20.12",
"@damilaredev/eslint-config": "0.0.19",
"@damilaredev/eslint-config-typescript": "^0.0.19",
"@damilaredev/tsconfig": "1.5.2",
"@rollup/plugin-alias": "5.1.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-json": "6.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.5",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "11.1.5",
"@storybook/addons": "^7.0.0",
"@storybook/components": "^7.0.0",
"@storybook/react": "^7.0.0",
"@storybook/theming": "^7.0.0",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.11.18",
"@types/react": "18.2.38",
"@types/react-dom": "18.2.17",
"autoprefixer": "10.4.16",
"babel-loader": "^9.1.2",
"babel-preset-react-app": "^10.0.1",
"bumpp": "9.2.0",
"esbuild": "0.19.7",
"eslint": "8.54.0",
"esno": "0.17.0",
"happy-dom": "12.10.3",
"husky": "8.0.3",
"lint-staged": "^15.0.0",
"node-sass": "^9.0.0",
"picocolors": "^1.0.0",
"pnpm": "8.11.0",
"postcss": "8.4.31",
"postcss-custom-properties": "^13.0.0",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.0.2",
"postcss-nesting": "^12.0.0",
"prettier": "3.1.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.5",
"rollup": "4.6.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "6.1.0",
"rollup-plugin-esbuild": "6.1.0",
"rollup-plugin-postcss": "^4.0.2",
"sass-loader": "^13.2.0",
"simple-git-hooks": "^2.8.1",
"tailwindcss": "3.3.5",
"tslib": "^2.3.1",
"typescript": "5.2.2",
"vite": "4.5.0",
"vitest": "0.34.6"
},
"dependencies": {
"@damilaredev/utils": "^0.6.0"
},
"resolutions": {
"@damilaredev/hooks": "workspace:*"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
},
"pnpm": {
"overrides": {
"rollup": "^2.79.1"
}
}
}