-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.9 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
64
65
66
67
68
69
70
71
72
{
"name": "@ocode/components",
"version": "1.0.0",
"description": "OC UI Components",
"main": "index.js",
"private": true,
"repository": "[email protected]:observable-code/components.git",
"author": "Chris Biscardi <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn",
"build": "lerna run build",
"build:watch": "lerna run build:watch",
"build:storybook": "echo 'implement storybook static build' && exit 0",
"changelog": "lerna-changelog",
"plop": "plop",
"precommit": "lint-staged",
"start": "start-storybook -p 9002 -c .storybook",
"test": "lerna run test",
"test:updated": "npm run test -- $(lerna updated | grep ^- | grep -v private | sed 's/^- /--scope /g')"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
]
},
"changelog": {
"repo": "observable-code/components",
"labels": {
"bug": "Bug fix",
"cleanup": "Housekeeping"
},
"cacheDir": ".changelog"
},
"dependencies": {
"@storybook/react": "^3.2.5",
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.5",
"emotion": "^7.2.0",
"fam": "^0.0.3",
"husky": "^0.14.3",
"lerna": "^2.0.0",
"lerna-changelog": "^0.6.0",
"lerna-semantic-release": "^9.1.0",
"lint-staged": "^4.0.3",
"plop": "^1.8.0",
"preact": "^8.2.1",
"preact-compat": "^3.17.0",
"prettier": "^1.5.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-emotion": "^7.2.0",
"storybook-addon-a11y": "^3.1.9",
"style-loader": "^0.18.2",
"system-font-css": "^1.1.0"
},
"devDependencies": {
"cz-lerna-changelog": "^1.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}