This repository was archived by the owner on Jun 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "blueprint-components",
"version": "0.0.0-semantically-released",
"main": "src/index.js",
"description": "The missing components for Blueprint",
"keywords": [
"react",
"blueprint",
"blueprintjs",
"components",
"ui"
],
"repository": "[email protected]:Landish/blueprint-components.git",
"author": "Lado Lomidze <[email protected]> (https://ladolomidze.com/)",
"license": "MIT",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"{src,styleguide,__tests__}/**/*.{js,jsx,json}": [
"prettier --write",
"git add"
]
},
"scripts": {
"cz": "git-cz",
"precommit": "lint-staged",
"format": "prettier --write {src,styleguide,__tests__}/**/*.{js,jsx,json}",
"test": "jest",
"test:watch": "jest --watch",
"docs": "styleguidist server",
"docs:build": "styleguidist build",
"predeploy": "yarn docs:build",
"deploy": "gh-pages -d build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"@blueprintjs/core": "^1.28.0",
"classnames": "^2.2.5",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.6.0",
"react-dom": "^15.6.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"jest": "^21.1.0",
"lint-staged": "^4.2.1",
"loaders": "^1.1.3",
"prettier": "^1.7.0",
"react-styleguidist": "^6.0.24",
"semantic-release": "^8.0.0",
"webpack": "^3.6.0"
}
}