-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.64 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
{
"name": "azure-feathers-type-script-github-actions",
"description": "",
"version": "0.0.0",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Anthony Salemo",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^14.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"lint": "eslint src/. --config .eslintrc.json --ext .ts --fix",
"dev": "ts-node-dev --no-notify src/",
"build": "npm run compile",
"start": "node lib/index.js",
"mocha": "ts-mocha \"test/**/*.ts\" --recursive --exit",
"compile": "shx rm -rf lib/ && tsc"
},
"standard": {
"env": [
"mocha"
],
"ignore": []
},
"types": "lib/",
"dependencies": {
"@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",
"compression": "^1.7.4",
"cors": "^2.8.5",
"helmet": "^4.6.0",
"serve-favicon": "^2.5.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/mocha": "^9.0.0",
"@types/serve-favicon": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"axios": "^0.23.0",
"eslint": "^7.32.0",
"mocha": "^8.4.0",
"shx": "^0.3.3",
"ts-mocha": "^8.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
}
}