-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
40 lines (40 loc) · 1.47 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
{
"name": "apollo-all",
"version": "0.0.2",
"description": "Apollo boilerplate with authentication. Works with vue, react and nextjs",
"license": "MIT",
"author": "ric0 <rico@enricocerroni.com>",
"devDependencies": {
"concurrently": "^4.1.0",
"husky": "^4.3.0"
},
"scripts": {
"lint-backend": "cd backend && yarn lint",
"start-dev-apollo": "cd backend && yarn start",
"start-dev-vue": "cd frontend-vue && yarn dev",
"start-dev-react": "cd frontend-react && yarn dev",
"start-docker-dev-apollo": "cd backend && yarn start-docker",
"start-docker-dev-vue": "cd frontend-vue && yarn dev",
"start-docker-dev-react": "cd frontend-react && yarn dev",
"install-dev-apollo": "cd backend && yarn install",
"install-dev-vue": "cd frontend-vue && yarn install",
"install-dev-react": "cd frontend-react && yarn install",
"dev": "concurrently --kill-others 'yarn:start-dev-*'",
"dev-docker": "concurrently --kill-others 'yarn:start-docker-dev-*'",
"install-all": "yarn install && concurrently 'yarn:install-dev-*'",
"start": "yarn run dev",
"start-docker": "yarn run dev-docker",
"reset-install": "bash reset-install.sh",
"test-backend": "cd backend && yarn test"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-backend",
"pre-push": "yarn test-backend",
"post-merge": "bash post-merge.sh"
}
},
"dependencies": {
"graphql-tester": "git+https://github.com/sazzer/graphql-tester.git"
}
}