-
-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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": "Matic Zavadlal <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf packages/*/dist",
"build": "bob build",
"test": "jest",
"check": "pnpm -r run check",
"test:ci": "jest --coverage",
"prerelease": "yarn build",
"release": "changeset publish",
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.{ts,tsx,graphql,yml}\""
},
"devDependencies": {
"@babel/core": "7.19.6",
"@babel/preset-env": "7.19.4",
"@babel/preset-typescript": "7.18.6",
"@changesets/cli": "2.24.2",
"@changesets/changelog-github": "0.4.6",
"@types/jest": "28.1.6",
"@types/node": "18.6.4",
"babel-jest": "29.3.1",
"bob-the-bundler": "^4.0.0",
"codecov": "3.8.3",
"husky": "8.0.1",
"jest": "28.1.3",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"ts-jest": "28.0.7",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"resolutions": {
"prettier": "2.7.1"
}
}