-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"packageManager": "[email protected]",
"name": "react-framebase",
"version": "1.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"fix:lint": "eslint --fix .",
"fix:prettier": "prettier -w ./src .",
"test:jest": "jest --coverage",
"test:lint": "eslint .",
"test:prettier": "prettier -c ./src && prettier -c ./__tests__",
"test:tsc": "tsc --noEmit",
"build": "tsc"
},
"keywords": [],
"repository": {
"url": ""
},
"description": "",
"license": "MIT",
"author": {
"name": "Szymon Bretner",
"email": ""
},
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"@adobe/css-tools": "4.2.0"
},
"devDependencies": {
"@swc/core": "^1.3.40",
"@swc/jest": "^0.2.24",
"@types/jest": "^29.4.4",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"git-hook-tasks": "ncpa0cpl/git-hook-tasks",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"prettier-plugin-jsdoc": "^0.4.2",
"typescript": "^5.0.2"
}
}