This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "hooks-project",
"private": true,
"version": "3.0.1",
"scripts": {
"build": "preconstruct build && pnpm format-dist",
"dev": "preconstruct dev",
"watch": "preconstruct watch",
"test": "jest --passWithNoTests",
"ci": "pnpm dev && jest --coverage --ci",
"format": "pretty-quick",
"format-dist": "prettier packages/**/dist/**/*.js --write --loglevel=error",
"publish-local": "pnpm -r exec yalc publish",
"ci:version": "changeset version && pnpm install --frozen-lockfile false",
"ci:publish": "pnpm build && changeset publish",
"prepare": "husky install"
},
"dependencies": {
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@changesets/cli": "2.26.0",
"@jest/expect": "29.3.1",
"@manypkg/get-packages": "^1.1.3",
"@preconstruct/cli": "2.2.2",
"all-contributors-cli": "6.24.0",
"consola": "^2.15.3",
"esno": "^0.14.0",
"execa": "4.1.0",
"globby": "^13.1.2",
"husky": "8.0.3",
"jest": "29.3.1",
"jest-serializer-path": "0.1.15",
"jest-snapshot-serializer-raw": "1.2.0",
"jest-watch-typeahead": "2.2.1",
"prettier": "2.8.1",
"pretty-quick": "3.1.3",
"typescript": "4.9.4",
"yalc": "1.0.0-pre.53"
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@changesets/types": "^5.2.1",
"@types/babel__core": "7.1.20",
"@types/babel__preset-env": "7.9.2",
"@types/dedent": "^0.7.0",
"@types/jest": "29.2.5",
"@types/prettier": "2.7.2"
}
}