-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.83 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
{
"name": "pnp-authentication-service",
"version": "0.1.18",
"description": "Clevertech's micro service for authentication",
"author": "Clevertech <[email protected]>",
"main": "src/index.js",
"scripts": {
"start": "better-npm-run start",
"start-dev": "better-npm-run start-dev",
"test": "DATABASE_URL=postgresql://localhost/pnp PORT=3001 ava --verbose --fail-fast",
"test:watch": "DATABASE_URL=postgresql://localhost/pnp PORT=3001 ava --verbose --fail-fast --watch",
"test:dev": "NODE_ENV=test DATABASE_URL=postgresql://authtest:authtest@localhost/auth AUTH_SIGNUP_FIELDS=firstName,lastName,username AUTH_REDIRECT_URL=/auth/landing AUTH_BASE_URL=http://localhost:3000/auth SYMMETRIC_KEY=ee3b03dd1808d4172ee98ae6557c673c PORT=3001 ava --verbose",
"lint": "standard"
},
"betterScripts": {
"start": "node src/index.js",
"start-dev": "nodemon src/index.js"
},
"bin": {
"pnp-authentication-service": "./src/index.js",
"pnp-authentication-service-starter": "./src/starter.js"
},
"dependencies": {
"body-parser": "1.17.2",
"dedent": "^0.7.0",
"ejs": "2.5.7",
"express": "4.15.4",
"i18n": "^0.8.3",
"inquirer": "3.2.1",
"joi": "10.6.0",
"jsonwebtoken": "7.4.2",
"knex": "0.12.9",
"lodash": "^4.17.4",
"mongodb": "^2.2.30",
"mysql": "^2.13.0",
"ncp": "^2.0.0",
"node-fetch": "1.7.2",
"pg": "6.4.2",
"pify": "^2.3.0",
"pnp-email-service": "^0.1.6",
"pnp-media-service": "^0.1.3",
"qrcode": "0.8.2",
"request": "2.81.0",
"scrypt": "^6.0.3",
"speakeasy": "^2.0.0",
"superagent": "^3.5.2",
"useragent": "2.2.1",
"uuid": "3.1.0",
"winston": "2.3.1"
},
"devDependencies": {
"ava": "0.18.1",
"better-npm-run": "^0.0.15",
"chai": "4.1.1",
"nodemon": "^1.11.0",
"standard": "^8.6.0"
}
}