-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 4.15 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
{
"name": "@gracile/root",
"version": "0.0.0",
"private": true,
"description": "A thin, full-stack, web framework",
"keywords": [
"custom-elements",
"full-stack",
"lit",
"server",
"server-side-rendering",
"ssr",
"static",
"web-components"
],
"homepage": "https://gracile.js.org",
"repository": "gracile-web/gracile",
"license": "ISC",
"author": {
"name": "Julian Cataldo",
"email": "contact@juliancataldo.com",
"url": "https://www.juliancataldo.com"
},
"type": "module",
"scripts": {
"// postsyncpack": "pnpm i",
"build": "turbo build --concurrency 20",
"check-all": "pnpm build && (pnpm test & pnpm lint:es & pnpm format)",
"clean": "turbo clean --concurrency 20",
"dev": "turbo dev --concurrency 20",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"knip": "knip",
"lint:commit": "commitlint --from=HEAD~1",
"lint:es": "eslint .",
"lint:es:fix": "eslint --fix .",
"audit": "pnpm audit signatures --prod",
"list-pkg": "pnpm m ls --json --depth=-1 | node -e \"const path = require('path'); console.log(JSON.parse(require('fs').readFileSync('/dev/stdin', 'utf-8')).map((m) => path.relative(__dirname, m.path)).filter(Boolean))\" # From https://github.com/pnpm/pnpm/issues/1519",
"nolyfill": "pnpm dlx nolyfill install",
"postnolyfill": "pnpm install",
"prepare": "husky",
"sort-pjson": "pnpm sort-package-json '**/package.json'",
"syncpack:lint": "syncpack lint",
"test:integration": "pnpm --prefix integration test",
"test:integration:dev": "pnpm --prefix integration test:dev",
"test:unit": "turbo test:unit",
"test:unit:dev": "FORCE_COLOR=1 pnpm -r --parallel test:unit:dev"
},
"resolutions": {
"braces": "3.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@lerna-lite/cli": "^3.10.1",
"@lerna-lite/list": "^3.10.1",
"@lerna-lite/publish": "^3.10.1",
"@types/node": "22.8.1",
"c8": "10.1.2",
"concurrently": "^9.0.1",
"eslint": "^9.13.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.1",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"knip": "^5.34.0",
"prettier": "^3.3.3",
"sort-package-json": "^2.10.1",
"syncpack": "^13.0.0",
"tsx": "^4.19.1",
"turbo": "^2.2.3",
"typedoc": "^0.26.10",
"typedoc-plugin-markdown": "^4.2.9",
"typescript": "5.6.3",
"typescript-eslint": "^8.11.0"
},
"packageManager": "pnpm@9.5.0",
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"object.entries": "npm:@nolyfill/object.entries@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.groupby": "npm:@nolyfill/object.groupby@^1",
"object.values": "npm:@nolyfill/object.values@^1",
"side-channel": "npm:@nolyfill/side-channel@^1",
"array.prototype.findlast": "npm:@nolyfill/array.prototype.findlast@^1",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1",
"string.prototype.repeat": "npm:@nolyfill/string.prototype.repeat@^1",
"cross-spawn": "npm:cross-spawn@^7.0.6",
"nanoid": "npm:nanoid@^3.3.8",
"smol-toml": "npm:smol-toml@^1.3.1",
"@eslint/plugin-kit": "npm:@eslint/plugin-kit@^0.2.3"
}
}
}