-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 1.8 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
{
"name": "bitflow",
"author": "Mike Barkmin",
"license": "MIT",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"dev": "node scripts/watcher.mjs",
"build": "pnpm -r build",
"test": "jest",
"lint": "pnpm -r lint",
"version-packages": "changeset version",
"release": "changeset publish",
"website:dev": "pnpm --filter website dev",
"website:build": "pnpm --filter website build",
"website:start": "pnpm --filter website start"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.7",
"@changesets/cli": "2.25.0",
"@emotion/cache": "11.10.3",
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@types/jest": "28.1.8",
"@types/node": "18.7.6",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@vocab/cli": "1.2.0",
"chalk": "5.1.2",
"chokidar": "3.5.3",
"cross-env": "7.0.3",
"esbuild": "0.15.12",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-cli": "28.1.3",
"next": "12.3.1",
"node-plop": "0.31.0",
"plop": "3.1.1",
"prettier": "2.7.1",
"prettier-plugin-sort-json": "0.0.3",
"pretty-quick": "3.1.3",
"rimraf": "3.0.2",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.8.4",
"typescript-styled-plugin": "0.18.2",
"walkdir": "0.4.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]",
"dependencies": {
"@babel/core": "7.19.6",
"@openpatch/patches": "6.0.1",
"csstype": "3.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.38.0"
}
}