-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·42 lines (42 loc) · 1.3 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
{
"private": true,
"author": "Nam Nguyen <[email protected]>",
"license": "MIT",
"repository": "willnguyen1312/namnode",
"homepage": "https://github.com/sponsors/willnguyen1312",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/willnguyen1312"
},
"keywords": [
"namnode",
"store",
"utilities"
],
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"check": "turbo run build typecheck lint test",
"clean": "turbo clean && rm -rf node_modules",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "turbo lint",
"postbuild": "pnpm run size",
"release": "pnpm check && changeset version && changeset publish",
"size": "esno scripts/size-limit.ts",
"turbo:update": "pnpx @turbo/codemod update",
"typecheck": "turbo run typecheck",
"start-inspect-react": "turbo run dev --filter=@namnode/vite-plugin-inspect-react",
"test-inspect-react": "turbo run test --filter=@namnode/vite-plugin-inspect-react"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"eslint": "^8.56.0",
"eslint-config-custom": "workspace:*",
"esno": "^4.0.0",
"export-size": "^0.7.0",
"prettier": "^3.2.4",
"turbo": "^1.11.3"
}
}