-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 2.95 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
{
"name": "@dittolive/react-ditto",
"version": "0.11.2",
"description": "React wrappers for Ditto",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
}
},
"scripts": {
"build": "rimraf dist && npm run build:esm && npm run build:cjs && npm run build:static-files && scripts/fix-exports-type.js",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.json",
"build:static-files": "cp package.json CHANGELOG.md README.md dist/",
"test": "karma start",
"types": "tsc -p tsconfig.esm.json",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"docs:generate": "rimraf documentation-website/* && typedoc",
"docs:serve": "npx serve -s documentation-website -p 9999"
},
"author": "DittoLive Inc.",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/getditto/react-ditto.git"
},
"dependencies": {
"lodash.isequal": "^4.5.0"
},
"peerDependencies": {
"@dittolive/ditto": "^4.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@dittolive/ditto": "^4.0.0",
"@testing-library/react": "^14.3.1",
"@types/chai": "^4.2.21",
"@types/lodash": "^4.14.172",
"@types/lodash.isequal": "^4.5.6",
"@types/mocha": "^10.0.0",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.0",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.8",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"chai": "^4.3.4",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"gh-pages": "^6.1.1",
"globals": "^15.12.0",
"karma": "^6.4.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.5.4",
"karma-typescript-es6-transform": "^5.5.4",
"lodash": "^4.17.21",
"mocha": "^10.1.0",
"prettier": "3.2.5",
"prettier-eslint": "^16.3.0",
"puppeteer": "^23.9.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"rimraf": "^6.0.1",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"typedoc": "^0.25.13",
"typescript": "^4.8.4",
"typescript-eslint": "^8.15.0",
"uuid": "^9.0.1"
},
"browserslist": [
"Chrome >= 84",
"Edge >= 84",
"Firefox >= 79",
"Safari >= 14.1",
"iOS >= 14.5",
"Android >= 84",
"ChromeAndroid >= 84",
"FirefoxAndroid >= 79"
]
}