-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (71 loc) · 2.26 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
{
"name": "memong",
"version": "1.0.0",
"description": "Markdown Memo App",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Team. carret",
"license": "MIT",
"dependencies": {
"async": "^1.4.2",
"body-parser": "~1.0.0",
"cookie-parser": "~1.0.1",
"ejs": "^2.3.3",
"express": "^4.13.1",
"express-session": "^1.11.3",
"flux": "^2.0.3",
"jqtree": "^1.2.1",
"jwt-simple": "^0.3.0",
"mecab-ffi": "git+https://github.com/xissy/node-mecab-ffi.git",
"mongoose": "^4.1.2",
"node-uuid": "^1.4.3",
"passport": "0.2.2",
"passport-facebook": "2.0.0",
"passport-google-oauth": "0.2.0",
"rc-dialog": "^4.5.0",
"react": "^0.13.3",
"react-autosuggest": "1.18.3",
"react-component-resizable": "^0.2.3",
"react-cookie": "^0.2.6",
"react-notification": "^2.0.0",
"react-textarea-autosize": "^2.4.2",
"redis": "^0.12.1",
"remarkable": "^1.6.0",
"superagent": "^1.3.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"browser-sync": "^2.8.1",
"browserify": "^11.0.1",
"gulp": "^3.9.0",
"gulp-concat-css": "^2.2.0",
"gulp-ejsmin": "0.0.1",
"gulp-less": "^3.0.3",
"gulp-minify-css": "^1.2.0",
"gulp-nodemon": "^2.0.3",
"gulp-uglify": "^1.3.0",
"reactify": "^1.1.1",
"uglify": "^0.1.5",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"oauth": {
"google": {
"GOOGLE_APP_ID": "{{ YOUR GOOGLE APP ID }}",
"GOOGLE_APP_SECRET": "{{ YOUR GOOGLE APP SECRET }}",
"callbackURL": "http://{{ YOUR DOMAIN }}/login/google/callback"
},
"facebook": {
"FACEBOOK_APP_ID": "{{ YOUR FACEBOOK APP ID }}",
"FACEBOOK_APP_SECRET": "{{ YOUR FACEBOOK APP SECRET }}",
"callbackURL": "http://{{ YOUR DOMAIN }}/login/facebook/callback"
},
"token": {
"secret": "{{ YOUR TOKEN SECRET }}"
}
},
"cookieSecret": "{{ YOUR COOKIE SECRET }}",
"sessionSecret": "{{ YOUR SESSION SECRET }}"
}