-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 3.04 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
{
"name": "react-diff-viewer-continued",
"version": "3.2.2",
"private": false,
"description": "Continuation of a simple and beautiful text diff viewer component made with diff and React",
"keywords": [
"review",
"code-review",
"diff",
"diff-viewer",
"github",
"react",
"react-component",
"ui"
],
"repository": "[email protected]:aeolun/react-diff-viewer-continued.git",
"license": "MIT",
"authors": [
"Pranesh Ravi<[email protected]>",
"Bart Riepe <[email protected]>"
],
"main": "lib/index",
"typings": "lib/index",
"scripts": {
"build": "tsc --outDir lib/",
"build:examples": "webpack --progress",
"build:watch": "tsc --outDir lib/ -w",
"publish:examples": "NODE_ENV=production pnpm run build:examples && gh-pages -d examples/dist -r $GITHUB_REPO_URL",
"publish:examples:local": "NODE_ENV=production pnpm run build:examples && gh-pages -d examples/dist",
"start:examples": "webpack-dev-server --open --hot",
"lint": "eslint src/ test/",
"lint:fix": "eslint --fix src/ test/",
"prettier": "prettier --write ."
},
"dependencies": {
"classnames": "^2.3.1",
"diff": "^5.1.0",
"emotion": "^10.0.27",
"memoize-one": "^6.0.0",
"postinstall-postinstall": "^2.1.0",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@testing-library/react": "^14.1.2",
"@types/diff": "^5.0.2",
"@types/expect": "^1.20.3",
"@types/memoize-one": "^4.1.1",
"@types/mocha": "^5.2.5",
"@types/node": "^12.0.12",
"@types/prop-types": "15.7.5",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.8",
"@types/webpack": "^4.4.13",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"css-loader": "^6.7.1",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"expect": "^28.1.1",
"file-loader": "^6.2.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"react": "^18",
"react-dom": "^18",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"semantic-release": "^19.0.3",
"spy": "^1.0.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"engines": {
"node": ">= 8"
}
}