forked from previousdeveloper/staj.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.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
{
"name": "Staj.io",
"version": "1.0.0",
"author": "Gokhan Karadas",
"description": "Türkiyedeki tüm stajları listeyen back-end servisi",
"private": true,
"scripts": {
"start": "node ./bin/www"
},
"dependencies": {
"acl": "^0.4.7",
"body-parser": "~1.8.x",
"chai": "^2.2.0",
"connect-roles": "^3.1.1",
"cookie-parser": "~1.3.x",
"cors": "^2.7.1",
"debug": "~2.0.x",
"elasticsearch": "^4.0.2",
"express": "~4.10.x",
"gulp": "^3.8.11",
"gulp-jshint": "^1.9.4",
"jshint": "^2.6.3",
"method-override": "^2.3.x",
"mongoosastic": "^2.1.3",
"mongoose": "3.8",
"nconf": "^0.6.x",
"node-cache": "^1.1.0",
"oauth2orize": "^1.0.x",
"passport": "^0.2.x",
"passport-http": "^0.2.x",
"passport-http-bearer": "^1.0.x",
"passport-oauth2-client-password": "^0.1.x",
"request-ip": "^1.1.3",
"winston": "^0.8.x"
},
"jshintConfig": {
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": false,
"newcap": false,
"noarg": true,
"sub": true,
"undef": true,
"boss": true,
"eqnull": true,
"strict": false,
"scripturl": true,
"evil": true,
"globals": {
"location": true,
"printStackTrace": false
},
"browser": true,
"node": true
},
"devDependencies": {
"mocha": "^2.2.1",
"should": "^5.2.0",
"supertest": "^0.15.0"
}
}