forked from natsukagami/themis-web-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.98 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
{
"name": "themis-web-interface",
"version": "0.3.2",
"description": "A web interface for Themis, written in Node.js",
"main": "index.js",
"scripts": {
"postinstall": "cross-env DEBUG=gulp* gulp copy-deps --gulpfile gulp_copydeps.js",
"test": "mocha --recursive tests/",
"start": "cross-env DEBUG=themis:* node index.js",
"prod": "cross-env NODE_ENV=production DEBUG=themis:* node index.js",
"build-jsx": "cross-env NODE_ENV=production DEBUG=gulp* gulp render-jsx",
"build": "cross-env NODE_ENV=production DEBUG=gulp* gulp build",
"watch": "cross-env DEBUG=gulp gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/natsukagami/themis-web-interface.git"
},
"keywords": [
"Themis"
],
"author": "Natsu Kagami",
"license": "MIT",
"bugs": {
"url": "https://github.com/natsukagami/themis-web-interface/issues"
},
"homepage": "https://github.com/natsukagami/themis-web-interface#readme",
"dependencies": {
"axios": "^0.15.3",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"bootstrap": "^3.4.1",
"compression": "^1.6.2",
"connect-loki": "^1.0.8",
"cookie-parser": "^1.4.3",
"countdown": "^2.6.0",
"cross-env": "^3.1.3",
"debug": "^2.5.1",
"escape-string-regexp": "^1.0.5",
"express": "^4.14.0",
"express-brute": "^1.0.1",
"express-brute-nedb": "^1.1.0",
"express-recaptcha": "^2.1.0",
"express-session": "^1.14.2",
"globalize": "^1.3.0",
"gulp": "^3.9.1",
"gulp-util": "^3.0.8",
"jquery": "^3.1.1",
"md5": "^2.2.1",
"morgan": "^1.7.0",
"nedb": "^1.8.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pug": "^2.0.0-beta6",
"serve-favicon": "^2.3.2",
"walk": "^2.3.9",
"xml2js": "^0.4.17"
},
"devDependencies": {
"aliasify": "^2.1.0",
"babel": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"brace": "^0.10.0",
"browserify": "^13.1.1",
"chai": "^3.5.0",
"cldr-data": "^31.0.2",
"envify": "^4.0.0",
"eslint": "^4.18.2",
"eslint-config-defaults": "^9.0.0",
"eslint-config-react-app": "^2.0.1",
"eslint-config-recommended": "^1.5.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"gulp-clean": "^0.3.2",
"gulp-debug": "^3.0.0",
"gulp-gzip": "^1.4.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.0",
"gulp-yarn": "^0.0.5",
"gulp-zip": "^3.2.0",
"merge-stream": "^1.0.1",
"mocha": "^3.2.0",
"moment": "^2.18.1",
"prop-types": "^15.6.0",
"react": "^15.6.1",
"react-ace": "^5.2.0",
"react-bootstrap": "^0.31.2",
"react-dimensions": "^1.3.0",
"react-dom": "^15.6.1",
"react-flip-move": "^2.9.12",
"react-responsive": "^1.3.4",
"vinyl-buffer": "^1.0.0",
"vinyl-fs": "^2.4.4",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.8.0"
}
}