-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.93 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
{
"name": "percept",
"description": "A NodeJS backend to manage and share jsPsych experiments",
"version": "0.0.0",
"homepage": "",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "rivasd",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && npm run mocha",
"eslint": "eslint src/. test/. --config .eslintrc.json",
"start": "node src/",
"mocha": "mocha test/ --recursive"
},
"dependencies": {
"ajv": "^5.1.6",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.17.2",
"compression": "^1.6.2",
"cors": "^2.8.3",
"feathers": "^2.1.3",
"feathers-authentication": "^1.2.3",
"feathers-authentication-client": "^0.3.2",
"feathers-authentication-hooks": "^0.1.4",
"feathers-authentication-jwt": "^0.3.1",
"feathers-authentication-local": "^0.3.4",
"feathers-authentication-oauth2": "^0.2.4",
"feathers-client": "^2.2.0",
"feathers-configuration": "^0.4.1",
"feathers-errors": "^2.8.1",
"feathers-hooks": "^2.0.1",
"feathers-hooks-common": "^3.5.1",
"feathers-mongoose": "^5.1.0",
"feathers-rest": "^1.7.2",
"feathers-seeder": "^1.0.9",
"feathers-socketio": "^2.0.0",
"feathers-swagger": "^0.5.0",
"helmet": "^3.6.1",
"jquery": "^3.2.1",
"jquery-ui": "^1.12.1",
"jquery-ui-dist": "^1.12.1",
"mongoose": "^4.10.5",
"passport-facebook": "^2.1.1",
"passport-google-oauth20": "^1.0.0",
"pug": "^2.0.0-rc.2",
"serve-favicon": "^2.4.3",
"webpack": "^2.6.1",
"winston": "^2.3.1"
},
"devDependencies": {
"eslint": "^3.19.0",
"mocha": "^3.4.2",
"request": "^2.81.0",
"request-promise": "^4.2.1"
}
}