This repository was archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.74 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.74 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
62
63
64
65
66
67
68
69
70
{
"name": "daily-api",
"version": "0.4.0",
"description": "API for Spark Daily",
"main": "src/start.js",
"engines": {
"node": "8.1.3",
"npm": "5.3.0"
},
"scripts": {
"start": "node src/index.js",
"test": "NODE_ENV=test PORT=3001 DATABASE_URL=postgresql://localhost:5432/test",
"lint": "prettier src/*.js --write",
"precommit": "lint-staged",
"debug": "DEBUG=1 nodemon src/index.js",
"pg-config": "node database/config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparkthecause/daily-api.git"
},
"author": "Charles Burgess",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparkthecause/daily-api/issues"
},
"homepage": "https://github.com/sparkthecause/daily-api",
"dependencies": {
"apollo-server-express": "^1.1.2",
"apollo-upload-server": "^2.0.4",
"aws-sdk": "^2.104.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"cors": "^2.8.4",
"cron": "^1.2.1",
"daily-templates": "^0.9.2",
"express": "^4.15.4",
"express-sslify": "^1.2.0",
"graphql": "^0.10.0",
"graphql-tools": "^1.2.1",
"inline-css": "^2.2.2",
"knex": "^0.13.0",
"merge": "^1.2.0",
"mime-types": "^2.1.16",
"moment": "^2.18.1",
"moment-business": "^3.0.1",
"mustache": "^2.3.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"pg": "^7.2.0",
"postmark": "^1.4.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"validator": "^8.1.0"
},
"devDependencies": {
"dotenv": "^4.0.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.4",
"nodemon": "^1.9.2",
"prettier": "^1.6.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}