-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.8 KB
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
{
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"yarn run storybook\" \"lerna run start --stream\"",
"bump": "lerna version --amend --no-push",
"build": "lerna run build && build-storybook",
"release": "lerna publish from-package --yes",
"test": "lerna run test --stream --no-bail",
"test:watch": "lerna run test --stream --no-bail -- --watch",
"lint": "lerna run lint --stream --no-bail",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"deploy": "storybook-to-ghpages --ci --existing-output-dir=storybook-static"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@storybook/addon-a11y": "^5.2.4",
"@storybook/addon-actions": "^5.2.4",
"@storybook/addon-centered": "^5.2.4",
"@storybook/addon-info": "5.3.14",
"@storybook/addon-links": "^5.2.4",
"@storybook/addon-viewport": "^5.2.4",
"@storybook/addons": "^5.2.4",
"@storybook/react": "^5.2.4",
"@storybook/storybook-deployer": "^2.8.1",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"fstream": "^1.0.12",
"lerna": "^3.18.1",
"lodash": "^4.17.13",
"mixin-deep": "^1.3.2",
"prettier": "1.18.2",
"storybook-react-omit": "^1.0.0"
},
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CampGladiator/ui.git"
},
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/CampGladiator/ui/issues"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "all"
},
"homepage": "https://github.com/CampGladiator/ui#readme",
"name": "ui",
"dependencies": {
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-router-dom": "^5.1.2"
}
}