-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
51 lines (51 loc) · 1.62 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
{
"name": "superfluid-checkout",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"build:widget": "turbo run build --filter='./packages/widget'",
"changeset": "changeset",
"changeset:release": "pnpm build:widget && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"clean": "npm-run-all -p clean:*",
"clean:next": "rimraf -g \"./**/.next\"",
"clean:node-modules": "rimraf -g \"**/node_modules\"",
"clean:dist": "rimraf -g \"./**/dist\"",
"dev": "turbo run dev --filter=!./examples/*",
"dev:examples": "turbo run dev --filter='./packages/widget' --filter='./examples/*'",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"prepare": "husky install",
"sort-package-jsons": "npx sort-package-json \"**/package.json\" \"!**/node_modules/**\" --check",
"tsc": "turbo run tsc"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"pnpm format",
"eslint --fix"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"eslint": "^8.57.1",
"eslint-config-custom": "workspace:*",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"turbo": "^1.13.4",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"eslint-plugin-react-hooks": "5.0.0-canary-41f0e9dae-20230907",
"@wagmi/core": "1",
"react-dom": "^18.3.1",
"react": "^18.3.1"
}
}
}