-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.72 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
116
{
"name": "Developer-Demo-Server",
"description": "",
"version": "0.0.0",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "UnumID Admin",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^14.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"test": "yarn run build && NODE_ENV=test yarn migrate && NODE_ENV=test yarn run jest --runInBand",
"dev": "ts-node-dev --no-notify src/",
"start": "yarn migrate && node lib/",
"jest": "jest --forceExit",
"build": "shx rm -rf lib/ && tsc",
"lint": "eslint \"src/**\" \"test/**\"",
"migration:up": "yarn mikro-orm migration:up",
"migration:down": "yarn mikro-orm migration:down",
"migration:create": "yarn mikro-orm migration:create",
"migrate": "yarn migration:up"
},
"standard": {
"env": [
"jest"
],
"ignore": []
},
"types": "lib/",
"dependencies": {
"@feathersjs/authentication": "4.5.8",
"@feathersjs/configuration": "4.5.8",
"@feathersjs/errors": "4.5.8",
"@feathersjs/express": "4.5.8",
"@feathersjs/feathers": "4.5.8",
"@feathersjs/socketio": "4.5.8",
"@feathersjs/transport-commons": "4.5.8",
"@unumid/library-crypto": "https://github.com/UnumID/Library-Crypto-TypeScript.git#1.5.0",
"@unumid/server-sdk": "git+ssh://[email protected]/UnumID/server-sdk-typescript.git#3.6.0",
"@unumid/server-sdk-deprecated-v2": "npm:@unumid/[email protected]",
"@unumid/server-sdk-deprecated-v1": "git+ssh://[email protected]/UnumID/server-sdk-typescript.git#1.4.0",
"@unumid/types": "git+ssh://[email protected]/UnumID/types#3.12.0",
"@unumid/types-deprecated-v2": "npm:@unumid/[email protected]",
"@unumid/types-deprecated-v1": "git+ssh://[email protected]/UnumID/types#1.5.1",
"@unumid/demo-types": "git+ssh://[email protected]/UnumID/demo-types.git#3.0.8",
"@unumid/demo-types-deprecated-v2": "git+ssh://[email protected]/UnumID/demo-types#release/v2.1.x",
"@unumid/demo-types-deprecated-v1": "git+ssh://[email protected]/UnumID/demo-types.git#v0.5.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dedent": "^0.7.0",
"dotenv": "^8.2.0",
"faker": "^5.1.0",
"feathers-mikro-orm": "https://github.com/UnumID/feathers-mikro-orm.git#2cf1ff6d12bc497ee9c5541f5cd08da795ba5a78",
"helmet": "^3.21.2",
"lodash": "^4.17.20",
"mikro-orm": "^3.6.15",
"pg": "^8.4.2",
"serve-favicon": "^2.5.0",
"uuid": "^8.3.0",
"winston": "^3.0.0",
"winston-syslog": "^2.4.4"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.7",
"@types/faker": "^5.1.5",
"@types/helmet": "^0.0.48",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.160",
"@types/serve-favicon": "^2.5.0",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@types/winston-syslog": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"axios": "^0.20.0",
"eslint": "^7.7.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"nodemon": "^2.0.2",
"shx": "^0.3.2",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node-dev": "^1.0.0-pre.61",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./build/mikro-orm.config.js"
]
}
}