-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.06 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
{
"name": "my-auth",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-kitty": "^1.4.5",
"jest": "^22.1.4",
"nodemon": "^1.14.11"
},
"dependencies": {
"@feathersjs/authentication": "^2.1.1",
"@feathersjs/authentication-jwt": "^2.0.0",
"@feathersjs/authentication-local": "^1.1.0",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/errors": "^3.2.1",
"@feathersjs/express": "^1.1.2",
"@feathersjs/feathers": "^3.0.5",
"compression": "^1.7.1",
"cors": "^2.8.4",
"feathers-hooks-common": "git://github.com/feathers-plus/feathers-hooks-common.git#master",
"feathers-mongoose": "^6.1.0",
"helmet": "^3.9.0",
"mongoose": "^5.0.1",
"pino": "^4.10.3",
"pino-multi-stream": "^3.1.2",
"rotating-file-stream": "^1.3.4",
"supertest": "^3.0.0"
},
"scripts": {
"test": "yarn run eslint && yarn run jest",
"start": "nodemon --watch src src/",
"eslint": "eslint src/. test/.",
"jest": "NODE_ENV=test jest "
}
}