-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.03 KB
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
{
"name": "simple-example",
"version": "2.0.0",
"description": "A FeathersJS Offline-first example application showcasing offline realtime support (own-data/own-net)",
"keywords": [
"feathers",
"offline",
"example",
"offline-first",
"realtime"
],
"author": {
"name": "Feathersjs-offline contributors",
"email": "feathersjs-offline@hillerstrom.name",
"url": "https://github.com/feathersjs-offline/simple-example"
},
"homepage": "https://github.com/feathersjs-offline/simple-example#readme",
"license": "MIT",
"main": "app/example.js",
"directories": {
"lib": "server",
"test": "tests"
},
"files": [
"server"
],
"publishConfig": {
"access": "public"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/feathers"
},
"repository": {
"type": "git",
"url": "https://github.com/feathersjs-offline/simple-example"
},
"scripts": {
"prepublish": "npm run compile",
"compile": "shx rm -rf lib/ && tsc",
"test": "npm run compile && npm run mocha",
"mocha": "mocha --config ./.mocharc.ts.json --recursive test/**.test.js test/**/*.test.js"
},
"bugs": {
"url": "https://github.com/feathersjs-offline/simple-example/issues"
},
"dependencies": {
"@feathersjs-offline/server": "^2.0.0",
"@feathersjs/adapter-commons": "^4.5.11",
"@feathersjs/configuration": "^4.5.11",
"@feathersjs/errors": "^4.5.11",
"@feathersjs/express": "^4.5.11",
"@feathersjs/feathers": "^4.5.11",
"@feathersjs/socketio": "^4.5.11",
"@feathersjs/transport-commons": "^4.5.11",
"bufferutil": "^4.0.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-memory": "^4.1.0",
"helmet": "^5.0.1",
"serve-favicon": "^2.5.0",
"utf-8-validate": "^5.0.3",
"winston": "^3.3.3"
},
"devDependencies": {
"axios": "^0.27.2",
"eslint": "^8.2.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.6",
"shx": "^0.3.3",
"sift": "^16.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.0.5"
}
}