-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 881 Bytes
/
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
{
"scripts": {
"start": "concurrently --prefix \"{name}\" --names \"RAILS,REACT,CSS\" -c \"bgBlue,black.bgGreen,black.bgYellow\" \"rails s -p 3001\" \"(cd client && npm run start)\" \"(cd client && npm run watch-css)\"",
"deploy": "rsync -avz -e 'ssh' --exclude-from '.rsync-exclude' . ostia:/home/ostia/books",
"build:deploy": "npm run build && npm run deploy",
"build": "(cd client && npm run build)",
"postinstall": "cd client/ && yarn install",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test": "cd client && npm t"
},
"devDependencies": {
"commitizen": "^2.9.6",
"concurrently": "^3.4.0",
"conventional-changelog-cli": "^1.3.1",
"cz-conventional-changelog": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}