-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
89 lines (89 loc) · 2.7 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
{
"name": "ebay-translation-react-widget",
"version": "2.0.0",
"description": "Lightweight, responsive and fully customizable component for React applications to translate eBay item title and description to another language.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/eBay/ebay-translation-react-widget.git"
},
"bugs": {
"url": "https://github.com/eBay/ebay-translation-react-widget/issues"
},
"homepage": "https://github.com/eBay/ebay-translation-react-widget#readme",
"author": "Lokesh Rishi",
"license": "ISC",
"keywords": [
"eBay Translation",
"component",
"react",
"ebay"
],
"scripts": {
"test": "jest",
"start": "concurrently \"PORT=3000 webpack-dev-server --mode development\" \"cd examples/server && PORT=3001 npm run start\"",
"postinstall": "cd examples/server && npm install",
"lint": "eslint --fix .",
"transpile": "babel src -d dist --copy-files",
"build": "npm run transpile && webpack --mode production"
},
"deprecated": false,
"dependencies": {
"@ebay/skin": "^12.6.11",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^12.1.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-material-ui-carousel": "2.1.2"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@testing-library/jest-dom": "^5.11.9",
"@webpack-cli/serve": "^2.0.5",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"concurrently": "^3.1.0",
"css-loader": "^4.2.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"file-loader": "^6.0.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.6.0",
"mocha": "^10.2.0",
"node-fetch": "^2.6.1",
"prettier": "^2.1.1",
"react-test-renderer": "^16",
"style-loader": "^1.2.1",
"undefined": "^0.1.0",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.12.0"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"directories": {
"example": "examples",
"test": "test"
},
"engines": {
"node": ">=16.0.0"
}
}