This repository has been archived by the owner on Nov 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.97 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
{
"name": "schulcloud-editor",
"version": "0.1.0",
"description": "MicroService for editor documents.",
"main": "src/",
"scripts": {
"start": "node src/",
"startd": "nodemon src/",
"debug": "nodemon --inspect=4002 src/",
"debug:container": "nodemon --inspect=0.0.0.0:4002 src/",
"serverMock": "nodemon --inspect=4003 src/testHelpers/StandAloneServerMock.js",
"test": "cross-env NODE_ENV=test mocha src/**/*.test.js --timeout 5000 --exit ",
"test:inspect": "cross-env NODE_ENV=test mocha --debug-brk --inspect src/**/*.test.js --timeout 50000",
"test:watch": "cross-env NODE_ENV=test mocha src/**/*.test.js --watch --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schul-cloud/schulcloud-editor.git"
},
"keywords": [
"feathers"
],
"author": "",
"license": "GPL",
"bugs": {
"url": "https://github.com/schul-cloud/schulcloud-editor/issues"
},
"homepage": "https://github.com/schul-cloud/schulcloud-editor#readme",
"dependencies": {
"@feathers-plus/cache": "^1.4.0",
"@feathersjs/configuration": "^4.3.3",
"@feathersjs/errors": "^4.3.3",
"@feathersjs/express": "^4.3.3",
"@feathersjs/feathers": "^4.3.3",
"@feathersjs/socketio": "^4.3.3",
"@sentry/node": "^5.5.0",
"ajv": "^6.10.2",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"chai-things": "^0.2.0",
"cors": "^2.8.5",
"feathers-hooks-common": "^5.0.2",
"feathers-mongoose": "^8.3.0",
"feathers-swagger": "^1.1.0",
"feathers-sync": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"mongoose": "^5.9.1",
"query-string": "^6.8.3",
"serve-favicon": "^2.5.0",
"util": "^0.12.1",
"winston": "^3.2.1",
"ws": "^7.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^7.0.1",
"nodemon": "^2.0.2"
}
}