-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "appfairy",
"version": "0.8.2",
"description": "A CLI tool to Migrate a Webflow project into a React app",
"main": "build/appfairy.js",
"bin": {
"appfairy": "appfairy"
},
"scripts": {
"build": "webpack --config webpack_config.js",
"prepublish": "npm run build"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"cheerio": "^1.0.0-rc.2",
"clean-css": "^4.1.11",
"execa": "^0.11.0",
"find-root": "^1.1.0",
"fs-extra": "^7.0.0",
"htmltojsx": "^0.3.0",
"minimist": "^1.2.0",
"node-fetch": "^2.1.2",
"recursive-readdir": "^2.2.2",
"resolve": "^1.8.1",
"source-map-support": "^0.5.9",
"statuses": "^1.5.0",
"uglify-js": "^3.4.5"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.1.0",
"eslint-loader": "^2.1.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
}
}