generated from ilomon10/starter-web-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.85 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
{
"name": "starter-web-application",
"description": "A starter kit for Node.js web application",
"version": "0.0.0",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Imanuel Pundoko",
"email": "ilomon10@gmail.com"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^12.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"install:public": "cd public && npm install",
"build:public": "cd public && npm run build",
"postinstall": "npm run install:public",
"postbuild": "npm run build:public",
"build": "npm run lint",
"test": "npm run lint && npm run mocha",
"lint": "eslint src/. test/. --config .eslintrc.json --fix",
"dev": "nodemon src/",
"start": "node src/",
"mocha": "mocha test/ --recursive --exit"
},
"standard": {
"env": [
"mocha"
],
"ignore": []
},
"dependencies": {
"@feathersjs/authentication": "^4.5.11",
"@feathersjs/authentication-local": "^4.5.11",
"@feathersjs/authentication-oauth": "^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",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-sequelize": "^6.2.0",
"helmet": "^4.4.1",
"moment": "^2.29.1",
"pg": "^8.5.1",
"sequelize": "^6.5.0",
"serve-favicon": "^2.5.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"axios": "^0.21.1",
"eslint": "^7.21.0",
"mocha": "^8.3.0",
"nodemon": "^2.0.7"
},
"nodemonConfig": {
"ignore": [
"public/"
]
}
}