-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
135 lines (135 loc) · 3.38 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "vj4",
"version": "4.0.0",
"author": "Breezewish",
"private": true,
"license": "AGPL-1.0",
"devDependencies": {
"ajv": "^6.12.3",
"autoprefixer": "^8.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chalk": "^2.4.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"del": "^4.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^6.0.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.0.1",
"gulp-iconfont": "^11.0.1",
"gulp-if": "^2.0.2",
"gulp-nunjucks": "^3.1.1",
"gulp-plumber": "^1.2.0",
"gulp-svgmin": "^1.2.4",
"gulp-util": "^3.0.8",
"imports-loader": "^0.8.0",
"js-yaml": "^3.11.0",
"json-loader": "^0.5.7",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.1.4",
"rupture": "^0.7.1",
"style-loader": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"through2": "^2.0.3",
"webpack": "^3.11.0",
"yargs": "^11.0.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"base-64": "^0.1.0",
"classnames": "^2.2.5",
"clipboard": "^1.7.1",
"codemirror": "^5.58.2",
"diff-dom": "^2.3.1",
"emojify.js": "^1.1.0",
"jquery": "^3.5.0",
"jquery-scroll-lock": "^3.1.3",
"jquery.easing": "^1.4.1",
"jquery.transit": "^0.9.12",
"katex": "^0.9.0",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"normalize.css": "^7.0.0",
"nprogress": "^0.2.0",
"pickadate": "^3.5.6",
"prismjs": "^1.27.0",
"rc-tabs": "^9.2.5",
"react": "^15.6.2",
"react-codemirror": "^1.0.0",
"react-dom": "^15.6.2",
"react-redux": "^5.0.7",
"react-split-pane": "^0.1.77",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^4.3.0",
"redux-thunk": "^2.2.0",
"select2": "^4.0.6",
"slideout": "^1.0.1",
"sockjs-client": "^1.6.1",
"sticky-kit": "^1.1.3",
"tether": "^1.4.4",
"tether-drop": "^1.4.2",
"timeago-react": "^1.2.2",
"timeago.js": "^3.0.2",
"uuid": "^3.2.1",
"vj-simplemde": "0.0.8"
},
"scripts": {
"build": "node scripts/build",
"build:production": "node scripts/build --production",
"build:watch": "node scripts/build --watch"
},
"babel": {
"plugins": [
"transform-runtime"
],
"presets": [
[
"env",
{
"loose": true
}
],
"stage-2"
]
},
"babelForProject": {
"plugins": [
"lodash",
"transform-decorators-legacy",
"transform-runtime"
],
"presets": [
[
"env",
{
"loose": true,
"modules": false
}
],
"stage-2",
"react"
]
}
}