This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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": "feathers-starter",
"description": "A feathers starter project incl. Sequelize/PostgreSQL",
"version": "0.1.0",
"license": "MIT",
"homepage": "",
"main": "server",
"keywords": [
"feathers",
"sequelize"
],
"author": {
"name": "Onno Gabriel",
"email": "[email protected]"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/OnnoGeorg/feathers-postgresql-starter.git"
},
"bugs": {},
"directories": {
"lib": "server",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^10.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run eslint && npm run mocha",
"eslint": "eslint server/. test/. --config .eslintrc.json",
"dev": "nodemon server/",
"start": "node server/",
"mocha": "mocha test/ --recursive --exit"
},
"dependencies": {
"@feathersjs/authentication": "^4.5.2",
"@feathersjs/authentication-local": "^4.5.2",
"@feathersjs/configuration": "^4.5.2",
"@feathersjs/errors": "^4.5.2",
"@feathersjs/express": "^4.5.2",
"@feathersjs/feathers": "^4.5.2",
"@feathersjs/socketio": "^4.5.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"feathers-sequelize": "^6.1.0",
"helmet": "^3.22.0",
"pg": "^7.18.2",
"sequelize": "^5.21.6",
"serve-favicon": "^2.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"eslint": "^6.8.0",
"mocha": "^6.2.3",
"nodemon": "^1.19.4",
"sequelize-cli": "^5.5.1"
}
}