forked from chartbrew/chartbrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "chartbrew",
"version": "1.0.0-beta.12",
"description": "",
"main": "index.js",
"workspaces": [
"client",
"server"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"setup": "npm run prepareSettings && npm install && cd client && npm install && cd ../server/ && npm install",
"prepareSettings": "echo n | cp -vipr .env-template .env && cd client && echo n | cp -vipr src/config/settings.template.js src/config/settings.js",
"client": "cd client && npm start",
"server": "cd server && npm run start-dev",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chartbrew/chartbrew.git"
},
"author": {
"email": "hello@chartbrew.com",
"name": "ChartBrew"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/charbrew/chartbrew/issues"
},
"homepage": "https://github.com/chartbrew/chartbrew",
"devDependencies": {
"lerna": "^3.22.1",
"vuepress": "^1.5.4",
"husky": "^4.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD --exclude-dependents"
}
}
}