-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.91 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
{
"name": "slack-lunch-club",
"version": "1.0.0",
"description": "A web app to help HR alumni meet for lunch.",
"repository": {
"type": "git",
"url": "git+https://github.com/mikestaub/slack-lunch-club.git"
},
"author": "Michael Staub (https://github.com/mikestaub)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikestaub/slack-lunch-club/issues"
},
"proxy": "http://localhost:4000",
"scripts": {
"debug": "concurrently --kill-others 'cd backend && npm run debug' 'react-scripts start'",
"clean": "docker-compose down",
"dev": "npm run up && docker exec -it slack-lunch-club-devbox bash",
"encrypt": "simple-secrets encrypt",
"decrypt": "simple-secrets decrypt",
"restart": "docker-compose restart",
"deploy:production": "cd backend && npm run deploy:production && cd ../frontend && npm run deploy:production",
"deploy:staging": "cd backend && npm run deploy:staging && cd ../frontend && npm run deploy:staging",
"install:all": "npm run install:npm && npm run install:types",
"install:npm": "scripts/install-npm.sh",
"install:types": "scripts/install-types.sh",
"ncu:check": "scripts/check-updates.sh",
"ncu:update": "scripts/check-updates.sh -u",
"lint": "cd backend && npm run lint && cd ../frontend && npm run lint",
"report-coverage": "cd backend && npm run report-coverage && cd ../frontend && npm run report-coverage",
"prettier": "prettier --write '**/*.{js,jsx,yml}'",
"print-env-vars": "NODE_ENV=global simple-secrets print",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start",
"start": "concurrently --kill-others 'npm run start:frontend' 'npm run start:backend'",
"test:backend": "cd backend && npm test",
"test:e2e": "cd e2e-tests && npm test",
"test:frontend": "cd frontend && npm test",
"test": "npm run test:backend && npm run test:frontend && npm run test:e2e",
"validate": "npm run lint && flow && lint-staged",
"up": "docker-compose up -d",
"flow-coverage": "rm -rf ./flow-coverage && flow-coverage-report --config ./flow-coverage.config.json"
},
"lint-staged": {
"*.{js,json,css,md}": [
"npm run prettier",
"git add"
]
},
"devDependencies": {
"@mikestaub/simple-secrets": "2.0.1",
"babel-eslint": "8.2.5",
"concurrently": "3.6.0",
"eslint": "4.19.1",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-flowtype": "2.49.3",
"eslint-plugin-jest": "21.17.0",
"flow-bin": "0.75.0",
"flow-coverage-report": "0.5.0",
"flow-typed": "2.4.0",
"husky": "0.15.0-rc.13",
"lint-staged": "7.2.0",
"prettier": "1.14.2"
},
"keywords": [
"serverless",
"aws",
"react",
"docker",
"arangodb",
"graphql",
"express",
"styled-components",
"puppeteer",
"flow",
"prettier",
"eslint"
],
"husky": {
"hooks": {
"pre-commit": "npm run validate"
}
}
}