forked from praneshr/react-diff-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.41 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
{
"name": "react-diff-viewer",
"version": "3.1.1",
"private": false,
"description": "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]:praneshr/react-diff-viewer.git",
"license": "MIT",
"author": "Pranesh Ravi<[email protected]>",
"main": "lib/index",
"typings": "lib/index",
"scripts": {
"build": "tsc --outDir lib/",
"build:examples": "webpack --progress --colors",
"build:watch": "tsc --outDir lib/ -w",
"publish:examples": "NODE_ENV=production yarn build:examples && gh-pages -d examples/dist -r $GITHUB_REPO_URL",
"publish:examples:local": "NODE_ENV=production yarn build:examples && gh-pages -d examples/dist",
"start:examples": "webpack-dev-server --open --hot --inline",
"test": "mocha --require ts-node/register --require enzyme.ts ./test/**",
"test:watch": "mocha --require ts-node/register --require enzyme.ts --watch-extensions ts,tsx --watch ./test/**"
},
"dependencies": {
"classnames": "^2.2.6",
"create-emotion": "^10.0.14",
"diff": "^4.0.1",
"emotion": "^10.0.14",
"memoize-one": "^5.0.4",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/diff": "^4.0.2",
"@types/enzyme": "^3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/expect": "^1.20.3",
"@types/memoize-one": "^4.1.1",
"@types/mocha": "^5.2.5",
"@types/node": "^12.0.12",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.8",
"@types/webpack": "^4.4.13",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"css-loader": "^3.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"expect": "^24.8.0",
"favicons-webpack-plugin": "^0.0.9",
"file-loader": "^4.0.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.7.0",
"mocha": "^6.1.4",
"node-sass": "^7.0.0",
"raw-loader": "^3.0.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"sass-loader": "^7.1.0",
"spy": "^1.0.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"engines": {
"node": ">= 8"
}
}