-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "extjs2react",
"version": "1.0.0",
"description": "Helps convert ExtJS apps to React (Unofficial -- Not associated with Sencha)",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node ./index.js --watch src",
"classnames": "ACTION=classnames babel-node ./index.js",
"methodcalls": "ACTION=methodcalls babel-node ./index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bfischer1121/extjs2react.git"
},
"keywords": [
"extjs",
"react",
"sencha",
"transpile",
"rewrite",
"convert"
],
"author": "Blake Fischer",
"license": "ISC",
"bugs": {
"url": "https://github.com/bfischer1121/extjs2react/issues"
},
"homepage": "https://github.com/bfischer1121/extjs2react#readme",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"ast-types": "^0.12.2",
"fs-extra": "^7.0.1",
"nodemon": "^1.18.10",
"parse5": "^5.1.0",
"recast": "^0.17.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.1",
"prettier": "1.16.4"
}
}