forked from niccokunzmann/schulcloud-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.68 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
{
"name": "schulcloud-server",
"description": "",
"version": "18.0.6",
"homepage": "https://schul-cloud.org",
"main": "src/",
"keywords": [
"feathers"
],
"license": "AGPL-3.0",
"repository": {},
"author": {
"name": "Schul-Cloud Team"
},
"contributors": [],
"bugs": {},
"engines": {
"node": "^8.15.0"
},
"scripts": {
"lint": "eslint ./src ./test --ext .js --fix",
"seed": "./backup.sh -p setup/ -D schulcloud-test -a import",
"test": "cross-env NODE_ENV=test npm run seed && npm run coverage",
"backup": "./backup.sh -a -b export",
"setup": "./backup.sh -p setup/ -a import",
"start": "node src/",
"startd": "nodemon src/",
"debug": "nodemon --inspect=5959 src/",
"coverage": "cross-env NODE_ENV=test nyc --reporter=text-summary node_modules/.bin/_mocha --exit test/**/*.test.js",
"coverage-codecov": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | codecov --pipe",
"mocha": "cross-env NODE_ENV=test mocha --exit test/ --recursive",
"mocha-inspect": "cross-env NODE_ENV=test mocha --exit --debug-brk --inspect test/ --recursive",
"migrations": "node migrations/",
"migrations-local": "cross-env NODE_ENV=migration node migrations/",
"migrations-dry": "cross-env NODE_ENV=migration node migrations/ --dry"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.16",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/authentication-local": "^1.2.9",
"@feathersjs/configuration": "^2.0.6",
"@feathersjs/errors": "^3.3.6",
"@feathersjs/express": "^1.3.1",
"@feathersjs/feathers": "^3.3.1",
"@feathersjs/socketio": "^3.2.9",
"async": "^2.6.2",
"aws-sdk": "^2.306.0",
"bcryptjs": "latest",
"body-parser": "^1.15.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.0",
"chalk": "^2.4.2",
"chance": "^1.0.12",
"client-oauth2": "^4.1.0",
"compression": "^1.6.2",
"console-stamp": "^0.2.5",
"cors": "^2.8.1",
"cross-env": "^5.2.0",
"crypto-js": "^3.1.9-1",
"csv-parse": "^4.0.1",
"ejs": "^2.5.5",
"email-templates": "^5.0.2",
"es6-promisify": "^6.0.1",
"express": "^4.14.0",
"feathers-hooks-common": "^4.20.7",
"feathers-mongoose": "^3.6.2",
"feathers-swagger": "^1.1.0",
"file-type": "^9.0.0",
"freeport": "^1.0.5",
"jwt-decode": "^2.2.0",
"ldapjs": "git+https://github.com/schul-cloud/node-ldapjs.git",
"lodash": "^4.17.4",
"moment": "^2.19.2",
"mongoose": "^4.7.6",
"mongoose-autopopulate": "^0.9.1",
"mongoose-history": "^0.8.0",
"mongoose-id-validator": "^0.4.3",
"mongoose-lean-virtuals": "^0.3.5",
"mongoose-shortid-nodeps": "git+https://github.com/leeroybrun/mongoose-shortid-nodeps.git",
"moodle-client": "^0.5.2",
"nanoid": "^2.0.3",
"node-sass": "^4.2.0",
"nodemailer": "^4.7.0",
"passport": "^0.4.0",
"passport-strategy": "^1.0.0",
"phantomjs-prebuilt": "^2.1.14",
"pretty-error": "^2.0.3",
"querystring": "^0.2.0",
"randexp": "^0.5.3",
"read-chunk": "^3.0.0",
"request-promise-native": "^1.0.3",
"rss-parser": "^3.6.2",
"sanitize-html": "^1.18.2",
"serve-favicon": "^2.3.2",
"socketio": "^1.0.0",
"socketio-file-upload": "^0.6.2",
"strip-bom": "^3.0.0",
"strip-js": "^1.0.6",
"universal-analytics": "^0.4.17",
"uuid": "^3.3.2",
"winston": "^2.4.0"
},
"devDependencies": {
"codecov": "^3.5.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"mocha": "^6.1.4",
"mockery": "^2.0.0",
"nodemailer-mock": "^1.1.10",
"nyc": "^13.0.1"
}
}