-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "tasty",
"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}\"",
"preinstall": "npx only-allow pnpm",
"lint": "turbo lint",
"release": "changeset publish",
"release:dev": "changeset publish --tag dev",
"test": "turbo test",
"version": "changeset version",
"version:dev": "changeset version --snapshot dev"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.0",
"@jengaui/react": "0.4.0",
"@size-limit/file": "8.2.4",
"@size-limit/webpack": "8.2.4",
"@size-limit/webpack-why": "8.2.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "29.4.0",
"@types/node": "18.14.4",
"eslint": "8.35.0",
"find-up": "6.3.0",
"jest": "29.4.3",
"jest-styled-components": "^7.1.1",
"node-abort-controller": "3.1.1",
"prettier": "^2.8.4",
"react-transition-group": "^4.4.5",
"size-limit": "8.2.4",
"tsup": "6.6.3",
"turbo": "^1.8.3",
"typescript": "~4.7.4"
},
"size-limit": [
{
"name": "tasty",
"limit": "100 kb",
"path": "./packages/tastycss/dist/esm/index.js",
"import": "{ tasty }"
}
]
}