This repository has been archived by the owner on Jan 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.55 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "readerfront-api",
"version": "0.4.0",
"description": "A Graphql Backend for ReaderFront, written in Node.JS",
"author": "dvaJi",
"keywords": [
"graphql",
"node.js",
"manga"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dvaJi/ReaderFront-API/issues"
},
"main": "index.js",
"scripts": {
"lint": "eslint src",
"prettier": "pretty-quick --staged",
"setup": "npm run setup:install && npm run setup:db",
"setup:install": "npm run install",
"setup:db": "npm run db:migrate && npm run db:seed",
"db:migrate": "./node_modules/.bin/sequelize db:migrate",
"db:seed": "./node_modules/.bin/sequelize db:seed:all",
"start": "cross-env NODE_ENV=development nodemon src/index.js --exec babel-node",
"start:prod": "cross-env NODE_ENV=production npm run build:prod && npm run start:server",
"build:prod": "babel src -s -D -d build",
"start:server": "cross-env NODE_ENV=production node build/index.js",
"release": "standard-version",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-do-expressions": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-logical-assignment-operators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-proposal-pipeline-operator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/runtime": "^7.8.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-standard": "^4.0.1",
"husky": "^1.3.1",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1",
"sequelize-test-utils": "^0.3.0",
"standard-version": "^5.0.2"
},
"dependencies": {
"archiver": "^3.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"date-fns": "^1.30.1",
"dotenv": "^7.0.0",
"express": "^5.0.0-alpha.7",
"express-graphql": "^0.8.0",
"feed": "^2.0.4",
"fs-extra": "^7.0.1",
"graphql": "^14.5.8",
"graphql-date": "^1.0.3",
"graphql-depth-limit": "^1.1.0",
"graphql-tools": "^4.0.6",
"graphql-type-json": "^0.3.1",
"graphql-upload": "^9.0.0",
"jsonwebtoken": "^8.5.0",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"mysql2": "^1.7.0",
"nodemailer": "^6.4.2",
"nodemailer-sendgrid-transport": "^0.2.0",
"sequelize": "^5.21.3",
"sequelize-cli": "^5.5.1",
"sharp": "^0.23.4",
"sitemap": "^4.1.1",
"uuid": "^3.4.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run prettier"
}
}
}