-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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
{
"name": "sc-rtl",
"version": "1.0.0",
"description": "A little abstraction over cssjanus to handle RTL layouts with styled-components",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "typings/index.d.ts",
"repository": "https://github.com/valeriobelli/sc-rtl",
"author": "Valerio Belli <belli.valerio@outlook.com>",
"license": "MIT",
"files": [
"CHANGELOG.md",
"dist/",
"typings/"
],
"packageManager": "yarn@3.5.0",
"scripts": {
"build": "yarn build:lib && yarn build:types",
"build:lib": "node esbuild.config.js",
"build:types": "tsc -p tsconfig.types.json",
"code-formatting": "prettier --check \"**/*.+(js|ts|tsx)\"",
"lint": "eslint --format codeframe --ext tsx,ts src",
"test": "vitest",
"typecheck": "yarn typecheck:lib && yarn typecheck:test",
"typecheck:lib": "tsc -p tsconfig.lib.json --noEmit",
"typecheck:test": "tsc -p tsconfig.test.json --noEmit"
},
"devDependencies": {
"@tsconfig/strictest": "1.0.2",
"@types/react": "^18.0.28",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"cssjanus": "^2.0.0",
"esbuild": "0.17.12",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.2",
"happy-dom": "^8.9.0",
"jest-styled-components": "^7.1.1",
"prettier": "^2.8.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"styled-components": "^5.0.0",
"typescript": "5.0.2",
"vitest": "^0.29.7"
},
"peerDependencies": {
"cssjanus": "^2.0.0",
"react": "^18.0.0",
"styled-components": "^5.0.0"
},
"dependencies": {
"@testing-library/react": "^14.0.0",
"tslib": "^2.5.0"
}
}