-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
117 lines (117 loc) · 3.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ref-tree",
"version": "3.0.2-beta.4",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clear": "rimraf dist",
"clear:gh-pages": "rimraf ghpages",
"build": "npm run clear && webpack --config config/webpack.config.prod.js && gulp",
"dev": "webpack-dev-server --config config/webpack.config.dev.js",
"lint": "eslint --ext .js --ext .jsx src/",
"lint-fix": "eslint --fix --ext .js --ext .jsx src/",
"precommit": "npm run lint",
"es": "rm -rf es && babel src -d es --no-comments",
"deploy": "npm run clear:gh-pages && webpack --config config/webpack.config.ghpages.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run build"
},
"bugs": {
"url": "https://github.com/tinper-acs/ref-tree/issues"
},
"homepage": "https://github.com/tinper-acs/ref-tree#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tinper-acs/ref-tree.git"
},
"author": "",
"license": "MIT",
"files": [
"package.json",
"dist",
"lib",
"README.md"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-entries": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-ie": "^6.7.0",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"bee-button": "^1.0.6",
"bee-clipboard": "^2.0.0",
"bee-drawer": "0.0.2",
"bee-layout": "^1.2.7",
"bee-panel": "^1.0.0",
"colors": "^1.3.3",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^2.0.0",
"gulp": "~3.9.0",
"gulp-autoprefixer": "^3.1.1",
"gulp-babel": "~6.1.1",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-conventional-changelog": "^1.1.6",
"gulp-es3ify": "0.0.0",
"gulp-eslint": "~2.0.0",
"gulp-just-replace": "~1.0.2",
"gulp-less": "^4.0.1",
"gulp-minify-css": "^1.2.4",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "~1.6.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.1",
"less-loader": "^5.0.0",
"markdown-styles": "^3.1.10",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.11.0",
"open-browser-webpack-plugin": "0.0.5",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^3.0.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.8.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"tinper-bee": "^2.0.3",
"tinper-bee-core": "^0.4.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.1",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0",
"prop-types": "^15.6.0"
},
"dependencies": {
"ref-core": "^2.0.3",
"shallowequal": "^1.1.0"
}
}