-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.62 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
{
"name": "react-code-diff-lite",
"version": "1.0.14",
"description": "code diff by react hook",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --config ./webpack.dev.js --progress",
"build": "webpack --progress --mode production --config ./webpack.prod.js && tsc",
"demo": "webpack --progress --mode production --config ./webpack.build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IFmiss/react-code-diff.git"
},
"keywords": [
"react",
"code",
"diff"
],
"author": "ifmiss",
"license": "ISC",
"bugs": {
"url": "https://github.com/IFmiss/react-code-diff/issues"
},
"homepage": "https://github.com/IFmiss/react-code-diff#readme",
"devDependencies": {
"@babel/core": "^7.7.7",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.1.1",
"less-loader": "5.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.1.1",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.4",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"files": [
"dist/",
"README.md"
],
"dependencies": {
"diff": "^5.0.0",
"diff2html": "^3.4.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}