forked from outpostHQ/jengaui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.48 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
{
"name": "jengaui",
"private": true,
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"clean": "turbo clean && rm -rf node_modules",
"dev": "turbo dev --no-cache --parallel --continue",
"format": "prettier --write \"**/*.{ts,tsx,md,svg}\"",
"preinstall": "npx only-allow pnpm",
"lint": "turbo lint",
"release": "changeset publish",
"release:dev": "changeset publish --tag dev",
"test": "jest",
"test-cover": "jest --coverage",
"test-watch": "jest --watch",
"version": "changeset version",
"version:dev": "changeset version --snapshot dev",
"sort": "sort-package-json"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*": "prettier --write"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari major versions"
],
"resolutions": {
"@testing-library/user-event": "14.2.0",
"es5-ext": "0.10.53",
"prettier": "2.5.1"
},
"dependencies": {
"find-packages": "9.0.13",
"find-up": "^6.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tastycss": "^0.9.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.7",
"@changesets/cli": "2.25.0",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "14.2.0",
"@types/node": "18.7.14",
"@types/react": "^17.0.50",
"@types/react-dom": "^17.0.17",
"@types/react-is": "^17.0.3",
"@types/react-test-renderer": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"bytes": "^3.1.2",
"chromatic": "^6.10.2",
"dedent": "^0.7.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.5.13",
"husky": "^8.0.1",
"jest": "^27.5.1",
"jest-styled-components": "^7.1.1",
"lint-staged": "^13.0.3",
"node-abort-controller": "^3.0.1",
"prettier": "2.5.1",
"react-router": "^6.4.2",
"react-test-renderer": "^17.0.2",
"styled-components": "^5.3.6",
"tsup": "^6.2.3",
"turbo": "^1.5.6",
"typescript": "^4.8.4"
}
}