-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "pokeranks",
"version": "1.0.0",
"description": "Ranking of Battle in Pokemon Global Link.",
"scripts": {
"start": "node --require dotenv/config server.js",
"dev": "nodemon",
"check": "node --require dotenv/config check.js",
"send": "node --require dotenv/config send.js",
"test": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elite-Four/PokeRanks.git"
},
"keywords": [
"pokemon",
"pgl"
],
"author": "George Chung <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Elite-Four/PokeRanks/issues"
},
"homepage": "https://github.com/Elite-Four/PokeRanks#readme",
"dependencies": {
"axios": "^0.19.0",
"co": "^4.6.0",
"debug": "^2.6.0",
"dotenv": "^4.0.0",
"koa": "^1.2.4",
"moment": "^2.17.1",
"nodemailer": "^2.7.2",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"pug": "^2.0.0-beta10",
"screenshot-stream": "^4.1.0",
"sequelize": "^5.21.2"
},
"devDependencies": {
"eslint": "^3.14.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"nodemon": "^1.11.0"
}
}