This repository has been archived by the owner on Mar 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
85 lines (85 loc) · 3.14 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
{
"name": "cf-server",
"version": "0.0.1",
"engines": {
"node": "8.9.0"
},
"private": true,
"author": "Patrick Recher <p@tte.io>",
"dependencies": {
"@slack/client": "^3.14.1",
"apollo-engine": "^0.5.6",
"aws-sign": "^0.1.2",
"body-parser": "^1.18.2",
"connect-pg-simple": "^3.1.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"d3-array": "^1.2.1",
"d3-collection": "^1.0.4",
"d3-dsv": "^1.0.7",
"d3-format": "^1.2.0",
"d3-time-format": "^2.1.0",
"db-migrate": "^0.10.0-beta.24",
"db-migrate-pg": "^0.2.5",
"dotenv": "^4.0.0",
"email-validator": "^1.1.1",
"express": "^4.16.2",
"express-basic-auth": "^1.1.3",
"express-session": "^1.15.6",
"geoip-database": "^1.0.9",
"graphql": "^0.11.7",
"graphql-server-express": "^1.2.0",
"graphql-tag": "^2.5.0",
"graphql-tools": "^2.7.2",
"gsheets": "^2.0.0",
"isomorphic-unfetch": "^2.0.0",
"kraut": "^0.1.1",
"lru-cache": "^4.1.1",
"maxmind": "^2.3.0",
"minimist": "^1.2.0",
"mz": "^2.7.0",
"passport": "^0.4.0",
"pg": "^7.3.0",
"pogi": "^2.4.0",
"querystring": "^0.2.0",
"sharp": "^0.18.4",
"slugify": "^1.2.1",
"stripe": "^5.3.0",
"tslib": "^1.8.0",
"uuid": "^3.1.0",
"winston": "^2.4.0"
},
"scripts": {
"dev": "NODE_ENV=development nodemon -w graphql -w src -w lib -w index.js index.js",
"debug": "NODE_ENV=development node-debug index.js",
"start": "node index.js",
"precommit": "lint-staged",
"migrate:up": "db-migrate up",
"migrate:down": "db-migrate down",
"db:reset": "db-migrate reset && db-migrate up && node seeds/seed.js --filename republik.js --truncate && node seeds/seed.js --filename presale.js && cat script/data/feeds.json | node script/importFeeds.js && cat script/data/votings.json | node script/importVotings.js",
"seed": "node seeds/seed.js --filename republik.js --truncate && node seeds/seed.js --filename presale.js",
"translations": "gsheets --key=1OHoiENwJH-tqf9yXfXHOevAn17daO_CvB21Rym-oiqk --title=live --pretty --out lib/translations.json",
"import": "cat script/local/members.csv | node script/importMembers.js && node script/importTestimonials.js && node script/generateSMImages.js",
"sync:testimonials": "s3cmd sync --verbose --acl-public -c ./.s3cfg s3://republik/testimonials/ script/local/testimonials/",
"sync:sm": "s3cmd sync --verbose --acl-public -c ./.s3cfg s3://republik/testimonials/sm/ script/local/testimonials/sm/",
"sync:smexport": "s3cmd sync --verbose --acl-public -c ./.s3cfg s3://republik/testimonials/export/ script/local/testimonials/export/",
"upload:images": "node script/uploadImages.js",
"download:1k": "s3cmd sync --verbose --exclude '*' --include '*_1000x1000.jpeg' -c ./.s3cfg s3://republik/testimonials/ script/local/1kx1k/",
"standardize": "standard --fix"
},
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
]
},
"devDependencies": {
"concurrently": "^3.5.0",
"http-proxy": "^1.16.2",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"nodemon": "^1.12.1",
"rw": "^1.3.3",
"standard": "^10.0.3"
}
}