forked from PokeAPI/api-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.42 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.42 KB
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
{
"name": "api-data",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/dottjt/api-data.git",
"author": "Julius Reade <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node ./src/server.js",
"dev": "source .env && nodemon ./src/server.js",
"generate": "node ./data/generate.js",
"full": "source .env && yarn rollback && yarn migrate && yarn seed",
"rollback": "source .env && npx knex migrate:rollback",
"migrate": "source .env && npx knex migrate:latest",
"seed": "source .env && npx knex seed:run"
},
"dependencies": {
"axios": "^0.19.0",
"backblaze-b2": "^1.4.0",
"cheerio": "^1.0.0-rc.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"eslint": "^6.4.0",
"express-jwt": "^5.3.1",
"fs-extra": "^8.1.0",
"graphql": "^14.5.6",
"graphql-tag": "^2.10.1",
"graphql-yoga": "^1.18.3",
"knex": "^0.19.4",
"mjml": "^4.5.0",
"mongodb": "^3.3.2",
"passport": "^0.4.0",
"passport-discord": "^0.1.3",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.5.0",
"pg": "^7.12.1",
"pm2": "^3.5.1",
"puppeteer": "^1.20.0",
"request": "^2.88.0",
"require-graphql-file": "^1.0.1",
"shelljs": "^0.8.3",
"uuid": "^3.3.3"
},
"devDependencies": {
"nodemon": "^1.19.2"
}
}