-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "Clavy",
"version": "0.0.1",
"description": "Assistant for tasks planning",
"main": "server.js",
"engines": {
"node": "0.10.x"
},
"paths": {
"bin": "./bin/",
"js": "./client/js/",
"scss": "./client/scss/",
"public": "./public/"
},
"scripts": {
"production": "gulp production",
"develop": "gulp develop",
"test": "gulp test",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/atomiomi/clavy.git"
},
"keywords": [
"taskmanager",
"planning",
"journal",
"assistant"
],
"author": {
"name": "Ablay Keldibek",
"url": "https://github.com/atomiomi"
},
"maintainers": [
{
"name": "Ablay Keldibek",
"email": "[email protected]"
},
{
"name": "Maxim Drachsh",
"email": "[email protected]"
},
{
"name": "Alexey Goldobin",
"email": "[email protected]"
}
],
"dependencies": {
"async": "^0.9.0",
"body-parser": "^1.10.1",
"cookie-parser": "^1.3.3",
"express": "^4.10.7",
"express-session": "^1.10.1",
"fs": "0.0.2",
"jade": "^1.8.2",
"method-override": "^2.3.1",
"mongoose": "^3.8.21",
"path": "^0.11.14",
"require-tree": "~0.3.3",
"passport": "^0.2.1",
"passport-local": "^1.0.0",
"bcrypt-nodejs": "^0.0.3"
},
"devDependencies": {
"assign": "^0.1.7",
"browserify": "^8.1.3",
"browserify-shim": "^3.8.3",
"component-ajax": "https://github.com/ForbesLindesay/ajax/tarball/master",
"es6-promise": "^2.0.1",
"events": "^1.0.2",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^2.0.0",
"gulp-minify-css": "^0.3.11",
"gulp-mocha": "~2.0.1",
"gulp-replace": "~0.5.3",
"gulp-sass": "^1.2.4",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^1.0.2",
"moment": "^2.9.0",
"moment-range": "^1.0.7",
"nconf": "~0.7.1",
"object-assign": "^2.0.0",
"page": "^1.6.0",
"react": "^0.12.2",
"reactify": "^0.17.1",
"require-globify": "~1.1.0",
"vinyl-source-stream": "~1.1.0",
"yargs": "^3.8.0"
},
"browserify": {},
"browserify-shim": {
"react": "global:libs.React",
"dispatcher": "global:libs.Dispatcher",
"keys": "global:libs.keys",
"linked-list": "global:libs.LinkedList",
"page": "global:libs.page",
"object-assign": "global:libs.objectAssign",
"component-ajax": "global:libs.componentAjax",
"es6-promise": "global:libs.es6Promise",
"events": "global:libs.events",
"moment": "global:libs.moment",
"moment-range": "global:libs.momentRange"
},
"browser": {
"react": "react/addons",
"dispatcher": "./client/js/libs/dispatcher.js",
"keys": "./client/js/libs/keys.js",
"invariant": "./client/js/libs/invariant.js",
"localization": "./client/js/localization/main.js",
"key-switch": "./client/js/libs/keySwitch.js",
"api": "./client/js/libs/api.js"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/atomiomi/clavy/issues"
}
}