-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
120 lines (120 loc) · 3.07 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
120
{
"version": "0.6.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/test/mocks/styleMock.js"
}
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"format": "prettier --write 'src/**/*.{ts,tsx,scss,css,json}'",
"isready": "npm run format && npm run build"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "verbum",
"author": "Ozan Yurtsever",
"module": "dist/verbum.esm.js",
"size-limit": [
{
"path": "dist/verbum.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/verbum.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.18.0",
"@rollup/plugin-image": "^2.1.1",
"@size-limit/preset-small-lib": "^7.0.8",
"@storybook/addon-essentials": "^6.5.4",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.5.4",
"@storybook/addons": "^6.5.4",
"@storybook/react": "^6.5.4",
"@storybook/testing-react": "^1.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/intl": "^1.2.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/resize-observer-browser": "^0.1.7",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"cssnano": "^5.1.9",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"postcss": "^8.4.14",
"postcss-url": "^10.1.3",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-is": "^18.1.0",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^7.0.8",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@lexical/clipboard": "0.11.0",
"@lexical/code": "0.11.0",
"@lexical/file": "0.11.0",
"@lexical/hashtag": "0.11.0",
"@lexical/link": "0.11.0",
"@lexical/list": "0.11.0",
"@lexical/mark": "0.11.0",
"@lexical/overflow": "0.11.0",
"@lexical/plain-text": "0.11.0",
"@lexical/react": "0.11.0",
"@lexical/rich-text": "0.11.0",
"@lexical/selection": "0.11.0",
"@lexical/table": "0.11.0",
"@lexical/utils": "0.11.0",
"i18next": "^22.0.3",
"i18next-browser-languagedetector": "^7.0.0",
"lexical": "0.11.0",
"react-i18next": "^12.0.0",
"use-child": "^1.0.0",
"utility-types": "^3.10.0",
"y-websocket": ">=1.3.x",
"yjs": ">=13.5.22"
},
"repository": {
"type": "git",
"url": "https://github.com/ozanyurtsever/verbum"
}
}