-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "pokedex-api",
"version": "0.0.4",
"description": "Pokedex API",
"main": "index.js",
"repository": "https://github.com/bukinoshita/pokedex-api.git",
"author": "Bu Kinoshita <[email protected]>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node server",
"dev": "nodemon server",
"test": "xo && NODE_ENV=test mocha __tests__ --timeout=16000"
},
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"cors": "^2.8.3",
"crypto": "^1.0.0",
"express": "^4.15.3",
"express-validator": "^6.0.0",
"get-pokeball": "^0.0.2",
"jsonwebtoken": "^8.0.0",
"mailgun-js": "^0.22.0",
"moment": "^2.18.1",
"mongo-sanitize": "^1.0.0",
"mongoose": "^5.0.0",
"morgan": "^1.8.2"
},
"devDependencies": {
"eslint-config-prettier": "6.5.0",
"mocha": "6.2.2",
"supertest": "4.0.2",
"xo": "0.25.3"
},
"xo": {
"extends": ["prettier"],
"rules": {
"no-use-extend-native/no-use-extend-native": 0,
"prefer-promise-reject-errors": 0,
"radix": 0
},
"globals": ["it", "describe", "before"]
},
"now": {
"name": "pokedex-api",
"alias": "pokedex-api",
"env": {
"TOKEN_SECRET": "@pokedex-secret",
"DB_USER": "@pokedex-db-user",
"DB_PASSWORD": "@pokedex-db-password",
"MAILGUN_APIKEY": "@pokedex-mailgun-apikey",
"MAILGUN_FROM": "@pokedex-mailgun-from",
"MAILGUN_DOMAIN": "@pokedex-mailgun-domain"
}
}
}