-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.18 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "creeperlist-api",
"description": "The Creeperlist-Api handles voting, adding servers, keeping track of server ids, determining whether or not a server is sponsored, and, of course, registering and logging in.",
"version": "1.0.0",
"main": "dist/app.js",
"author": "Feestcoders",
"license": "ISC",
"scripts": {
"migrate": "knex migrate:latest && knex seed:run",
"watch": "export DEBUG=knex:query && npm run migrate && nodemon --exec babel-node src/app.js",
"build": "babel src --out-dir dist --copy-files",
"serve": "npm run build && npm run migrate && node dist/app.js",
"test": "npm run migrate && jest -i"
},
"dependencies": {
"apollo-server-express": "2.24.0",
"bcrypt": "5.0.1",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"dataloader": "2.0.0",
"express": "4.17.1",
"graphql": "15.5.0",
"graphql-depth-limit": "1.1.0",
"graphql-iso-date": "3.6.1",
"graphql-middleware": "6.0.10",
"graphql-shield": "7.5.0",
"graphql-tag": "2.12.4",
"graphql-tools": "7.0.5",
"http-errors": "1.8.0",
"jsonwebtoken": "8.5.1",
"knex": "0.21.19",
"lodash": "4.17.21",
"morgan": "1.10.0",
"objection": "2.2.15",
"password-validator": "5.1.1",
"sqlite3": "^5.0.2",
"validator": "13.6.0",
"winston": "3.3.3"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.14.0",
"@babel/node": "7.13.13",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/polyfill": "7.11.5",
"@babel/preset-env": "7.14.1",
"@jest/globals": "26.6.2",
"apollo-server-testing": "2.24.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-plugin-dynamic-import-node-babel-7": "2.0.7",
"eslint": "7.26.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"jest": "26.6.3",
"nodemon": "2.0.7"
}
}