-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
143 lines (143 loc) · 3.72 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
136
137
138
139
140
141
142
143
{
"name": "anubis",
"version": "1.0.0",
"description": "An online judging platform.",
"private": true,
"main": "index.js",
"scripts": {
"generate:constant": "gulp constant",
"generate:icon": "gulp iconfont",
"generate:locale": "gulp locale",
"generate": "gulp",
"build": "webpack --progress --color --display-error-details",
"build:production": "npm run build -- --env.production -p --optimize-dedupe",
"watch": "npm run build -- --env.watch -d --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KawashiroNitori/Anubis.git"
},
"keywords": [
"MongoDB",
"Redis",
"Python",
"asyncio",
"aiohttp",
"RabbitMQ"
],
"author": "Nitori",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/KawashiroNitori/Anubis/issues"
},
"homepage": "https://github.com/KawashiroNitori/Anubis#readme",
"devDependencies": {
"autoprefixer": "^6.7.5",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.3.2",
"babel-plugin-lodash": "^3.2.8",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.25.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "^0.9.0",
"fs-extra": "^0.30.0",
"gulp": "^3.9.1",
"gulp-cli": "^1.2.2",
"gulp-iconfont": "^9.1.0",
"gulp-nunjucks": "^2.2.0",
"gulp-svgmin": "^1.2.2",
"gulp-util": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz",
"happypack": "^2.2.1",
"imports-loader": "^0.6.5",
"js-yaml": "^3.6.1",
"json-loader": "^0.5.4",
"postcss-loader": "^0.13.0",
"rupture": "^0.6.1",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"through2": "^2.0.1",
"url-loader": "^0.5.7",
"webpack": "2.1.0-beta.22",
"yargs": "^5.0.0"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"classnames": "^2.2.5",
"codemirror": "^5.18.2",
"diff-dom": "^2.1.0",
"emojify.js": "^1.1.0",
"highlight.js": "^9.6.0",
"jquery": "^3.1.0",
"jquery-scroll-lock": "^2.2.0",
"jquery.easing": "^1.4.1",
"jquery.transit": "^0.9.12",
"katex": "^0.6.0",
"lodash": "^4.15.0",
"moment": "^2.15.0",
"normalize.css": "^4.2.0",
"pickadate": "^3.5.6",
"rc-tabs": "^7.0.6",
"react": "^15.3.1",
"react-codemirror": "^0.2.6",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-split-pane": "^0.1.44",
"redux": "^3.6.0",
"redux-logger": "^2.6.1",
"redux-promise-middleware": "^4.0.0",
"redux-thunk": "^2.1.0",
"simplemde": "^1.11.2",
"slideout": "^0.1.12",
"sockjs-client": "^1.1.1",
"sticky-kit": "^1.1.3",
"tether": "^1.3.7",
"tether-drop": "^1.4.2",
"timeago-react": "^1.0.8",
"timeago.js": "^2.0.5",
"uuid": "^2.0.2",
"validate.js": "^0.11.1"
},
"babel": {
"plugins": [
"transform-runtime",
"transform-decorators-legacy"
],
"presets": [
"es2015",
"stage-0",
"react"
]
},
"babelForProject": {
"plugins": [
"lodash",
"transform-runtime",
"transform-decorators-legacy"
],
"presets": [
[
"es2015",
{
"modules": false
}
],
"stage-0",
"react"
]
}
}