forked from RiyaNegi/react-comments-section
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.6 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.6 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
{
"name": "react-comments-section",
"version": "3.2.0",
"description": "React component library for a functioning comments section",
"author": "RiyaNegi",
"license": "MIT",
"repository": "RiyaNegi/react-comments-section",
"main": "dist/index.js",
"style": "dist/styles.css",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"sideEffects": false,
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl-with-assets --css-modules false --no-compress --format modern,cjs",
"start": "microbundle-crl-with-assets --css-modules false watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": "^18.3.x",
"react-dom": "^18.3.x"
}
,
"devDependencies": {
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"@types/draftjs-to-html": "latest",
"@types/html-to-draftjs": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@types/react-modal":"latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"babel-eslint": "latest",
"cross-env": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-config-standard": "latest",
"eslint-config-standard-react": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-standard": "latest",
"gh-pages": "latest",
"microbundle-crl": "latest",
"microbundle-crl-with-assets": "latest",
"npm-run-all": "latest",
"prettier": "latest",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-scripts": "latest",
"typescript": "^4.x.x"
},
"files": [
"dist"
],
"dependencies": {
"@emotion/react": "latest",
"@szhsin/react-menu": "latest",
"@types/lodash": "latest",
"@types/uuid": "latest",
"draft-js": "latest",
"draftjs-to-html": "latest",
"emoji-picker-react": "^3.5.1",
"html-to-draftjs": "latest",
"react-modal": "latest",
"sass": "latest",
"react-textarea-autosize":"latest"
}
}