forked from Aeolun/react-diff-viewer-continued
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.29 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
{
"name": "@yasoonofficial/react-diff-viewer-continued",
"version": "3.4.0",
"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"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/yasoonOfficial/react-diff-viewer-continued.git",
"directory": "packages/react-diff-viewer-continued"
},
"license": "MIT",
"authors": [
"Pranesh Ravi<praneshpranesh@gmail.com>",
"Bart Riepe <bart@serial-experiments.com>"
],
"main": "lib/src/index",
"typings": "lib/src/index",
"sideEffects": false,
"files": [
"lib/**/*"
],
"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",
"test": "jest ./test/**",
"test:watch": "jest",
"lint": "eslint src/ test/",
"lint:fix": "eslint --fix src/ test/",
"prettier": "prettier --write ."
},
"dependencies": {
"@emotion/css": "^11.11.2",
"classnames": "^2.3.2",
"diff": "^5.1.0",
"memoize-one": "^6.0.0",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@testing-library/react": "^13.4.0",
"@types/diff": "^5.0.6",
"@types/expect": "^1.20.4",
"@types/memoize-one": "^4.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.20.55",
"@types/prop-types": "15.7.5",
"@types/react": "^16.14.49",
"@types/react-dom": "^16.9.20",
"@types/webpack": "^4.41.34",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"css-loader": "^6.8.1",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"expect": "^28.1.3",
"file-loader": "^6.2.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"mini-css-extract-plugin": "^2.7.6",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.3",
"sass-loader": "^13.3.2",
"semantic-release": "^19.0.5",
"spy": "^1.0.0",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1"
},
"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"
}
}