-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.79 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
{
"name": "api",
"description": "",
"version": "0.0.0",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Jamal Shah",
"email": "jshah@fluxworkstudios.com"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^14.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"test": "yarn run compile && yarn run mocha",
"dev": "ts-node-dev --no-notify src/",
"start": "yarn run compile && node lib/",
"mocha": "ts-mocha \"test/**/*.ts\" --recursive --exit",
"compile": "shx rm -rf lib/ && tsc"
},
"standard": {
"env": [
"mocha"
],
"ignore": []
},
"types": "lib/",
"dependencies": {
"@feathersjs/authentication": "^4.5.1",
"@feathersjs/authentication-local": "^4.5.1",
"@feathersjs/authentication-oauth": "^4.5.1",
"@feathersjs/configuration": "^4.5.1",
"@feathersjs/errors": "^4.5.1",
"@feathersjs/express": "^4.5.1",
"@feathersjs/feathers": "^4.5.1",
"@feathersjs/socketio": "^4.5.1",
"@feathersjs/transport-commons": "^4.5.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-nedb": "^5.1.0",
"helmet": "^3.21.2",
"nedb": "^1.8.0",
"serve-favicon": "^2.5.0",
"winston": "^3.0.0"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/helmet": "^0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^7.0.2",
"@types/nedb": "^1.8.9",
"@types/serve-favicon": "^2.5.0",
"axios": "^0.19.2",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"shx": "^0.3.2",
"ts-mocha": "^7.0.0",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
}
}