-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
{
"name": "paykit-repo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"fix-prettier": "prettier --write \"**/*.{js,ts,tsx,md,mdx}\"",
"web:dev": "pnpm --filter web dev",
"build:packages": "pnpm --filter='./packages/*' build",
"changeset": "changeset",
"changeset:publish": "pnpm changeset publish",
"changeset:version": "git checkout HEAD -- apps/web/package.json && changeset version && git checkout HEAD -- apps/web/package.json && pnpm install --no-frozen-lockfile"
},
"workspaces": [
"apps/*",
"packages/*"
],
"keywords": [],
"prettier": {
"printWidth": 90,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all",
"plugins": [
"@trivago/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
],
"importOrder": [
"server-only",
"^react$",
"^@paykit-sdk$",
"^react-dom$",
"<THIRD_PARTY_MODULES>",
"^[./]"
]
},
"author": "Emmanuel Odii",
"license": "ISC",
"bugs": {
"url": "https://github.com/usepaykit/paykit-sdk/issues"
},
"dependencies": {
"@changesets/cli": "^2.29.7",
"@types/node": "^20",
"prettier": "^3.5.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.6.12",
"tailwindcss": "^4.1.11",
"tsup": "^8.5.0"
}
}