-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 1.24 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
{
"name": "prophet",
"version": "1.0.0",
"homepage": "https://github.com/stbui/prophet",
"bugs": "https://github.com/stbui/prophet/issues",
"main": "index.js",
"private": true,
"scripts": {
"build": "lerna run build",
"release": "yarn run build && lerna publish --exact --conventional-commits",
"demo": "cd examples/demo && yarn run start",
"start": "cd examples/starter && yarn run start",
"docs": "cd docs && gitbook build",
"prettier": "prettier --config ./.prettierrc.js --write --list-different \"packages/*/src/**/*.{js,json,ts,tsx}\"",
"start:docs": "cd docs && gitbook serve",
"publish:github": "gh-pages -d docs/_book",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint": "eslint --ext .js,.ts,.tsx \"./packages/**/src/**/*.{js,ts,tsx}\""
},
"author": "stbui",
"license": "ISC",
"description": "",
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"gh-pages": "^2.1.1",
"gitbook-cli": "^2.3.2",
"lerna": "^3.18.3",
"prettier": "^1.18.2",
"typescript": "^3.6.4",
"conventional-changelog-cli": "^2.0.25"
}
}