-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
143 lines (143 loc) · 3.8 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "collaborative-codemirror",
"version": "0.0.1",
"description": "Binding for collaborative editing support in Codemirror Editor. Connects JSON CRDT str node to Codemirror Editor.",
"author": {
"name": "streamich",
"url": "https://github.com/streamich"
},
"homepage": "https://github.com/streamich/collaborative-codemirror",
"repository": "streamich/collaborative-codemirror",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"LICENSE",
"lib/"
],
"scripts": {
"prettier": "prettier --ignore-path .gitignore --write 'src/**/*.{ts,tsx,js,jsx}'",
"prettier:check": "prettier --ignore-path .gitignore --list-different 'src/**/*.{ts,tsx,js,jsx}'",
"lint": "yarn eslint",
"lint:fix": "yarn eslint --fix",
"eslint": "eslint src",
"clean": "rimraf dist lib es6 es2019 es2020 esm typedocs storybook-static",
"build": "tsc --project tsconfig.build.json",
"jest": "jest",
"test": "yarn jest --maxWorkers 7",
"test:all": "yarn lint && yarn test",
"test:ci": "yarn jest --maxWorkers 3 --no-cache",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:publish": "npx gh-pages -d storybook-static",
"upgrade:check": "npx npm-check-updates@16.14",
"upgrade:interactive": "npx npm-check-updates@16.14 --interactive"
},
"keywords": [
"codemirror",
"codemirror-editor",
"codemirror-editor-binding",
"collaborative",
"multiplayer",
"binding",
"collaborative-editor",
"editor",
"input",
"textarea",
"contenteditable",
"json-crdt",
"json",
"crdt"
],
"dependencies": {
"collaborative-editor": "^2.9.0",
"json-joy": "^17.42.0"
},
"peerDependencies": {
"codemirror": "*",
"json-joy": "*",
"tslib": "2"
},
"devDependencies": {
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@chromatic-com/storybook": "^3",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-links": "^8.6.12",
"@storybook/addon-webpack5-compiler-babel": "^3.0.6",
"@storybook/addons": "^7.6.2",
"@storybook/blocks": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/react-webpack5": "^8.6.12",
"@storybook/test": "^8.6.12",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.11",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"codemirror": "^6.0.1",
"eslint": "^8.54.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"storybook": "^8.6.12",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typescript": "^5.6.3"
},
"jest": {
"verbose": true,
"testEnvironmentOptions": {
"url": "http://localhost/"
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"useESM": true
}
]
},
"transformIgnorePatterns": [],
"testRegex": ".*/(__tests__|__jest__|demo)/.*\\.(test|spec)\\.tsx?$",
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
},
"prettier": {
"arrowParens": "always",
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"config": {
"config": {
"commitizen": {
"path": "git-cz"
}
}
},
"packageManager": "yarn@4.9.4"
}