-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
119 lines (119 loc) · 2.84 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"version": "0.10.0",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.js"
}
},
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/merisbahti/klyva.git"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest --passWithNoTests --env jest-environment-jsdom test",
"test:watch": "jest --passWithNoTests --env jest-environment-jsdom --watch test",
"lint": "eslint src test"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"husky": {
"hooks": {
"pre-commit": "tsc"
}
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid"
},
"name": "klyva",
"author": "Meris Bahtijaragic",
"devDependencies": {
"@babel/core": "^7.11.6",
"@testing-library/react": "^12.1.5",
"@types/jest": "^27.4.1",
"@types/react": "^16.9.24",
"@types/react-dom": "^16.9.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"babel-loader": "^8.1.0",
"callbag": "^1.3.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^4.3.0",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"prettier": "^2.6.2",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"ts-jest": "^27.1.4",
"ts-loader": "^8.0.3",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"vite": "^2.9.2"
},
"dependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@types/use-sync-external-store": "^0.0.6",
"callbag-merge": "^3.2.2",
"callbag-share": "^1.2.0",
"callbag-subscribe": "^1.5.1",
"callbag-take": "^1.5.0",
"fast-deep-equal": "^3.1.3",
"optics-ts": "^2.2.0",
"use-sync-external-store": "^1.2.0"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"react-app",
"prettier",
"plugin:prettier/recommended"
],
"settings": {
"react": {
"version": "detect"
}
},
"plugins": [
"@typescript-eslint",
"unused-imports"
],
"rules": {
"no-redeclare": "off",
"@typescript-eslint/no-redeclare": [
"error"
],
"@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports-ts": "error"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
}
}