-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.21 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
{
"name": "@presta/monorepo",
"private": true,
"repository": "https://github.com/sure-thing/presta.git",
"author": "estrattonbailey",
"license": "MIT",
"engines": {
"node": ">=12.4.0",
"pnpm": ">=5.3.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.19.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@tsconfig/node12": "^1.0.9",
"afix": "1.2.0",
"c8": "^7.11.0",
"esbuild": "^0.12.29",
"esbuild-register": "^2.6.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"lambda-types": "^1.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"uvu": "^0.5.3"
},
"scripts": {
"prepare": "is-ci || pnpx husky install",
"test": "TESTING=true c8 node -r esbuild-register test",
"typecheck": "pnpm -r typecheck",
"build": "pnpm -r build",
"lint": "prettier --check .",
"format": "prettier --write .",
"changeset": "changeset",
"release": "pnpm build && changeset publish",
"version-packages": "changeset version && pnpm format && pnpm install --no-frozen-lockfile && git add .",
"gutcheck": "pnpm build && pnpm typecheck && pnpm test && pnpm format"
}
}