-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.58 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
{
"name": "octo-job-board",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"install:client": "(cd client && yarn)",
"install:server": "(cd server && yarn)",
"install": "yarn install:client && yarn install:server",
"build:client": "(cd client && yarn build)",
"build": "yarn build:client",
"clean:client": "(cd client && yarn clean)",
"clean:server": "(cd server && yarn clean)",
"clean": "yarn clean:client && yarn clean:server",
"configure": "(cd server && yarn configure)",
"start": "(cd server && node ./bin/www)",
"startmon": "(cd server && yarn startmon)",
"start:autoreload": "(cd server && yarn start:autoreload)",
"test:client": "(cd client && yarn test)",
"test:server": "(cd server && yarn test)",
"test": "yarn test:client && yarn test:server",
"lint:client": "(cd client && yarn lint)",
"lint:server": "(cd server && yarn lint)",
"lint": "yarn lint:client && yarn lint:server",
"lint:fix": "(cd client && yarn lint:fix) && (cd server && yarn lint:fix)",
"release": "./tools/release/release.sh",
"heroku-postbuild": "yarn build",
"prepush": "yarn lint && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/octo-web-front-end-tribe/octo-job-board.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/octo-web-front-end-tribe/octo-job-board/issues"
},
"homepage": "https://github.com/octo-web-front-end-tribe/octo-job-board#readme",
"devDependencies": {
"husky": "^0.14.3",
"nodemon": "^1.11.0"
}
}