-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.23 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
{
"name": "@contentment-org/design-kit",
"version": "1.0.15",
"description": "Design kit for contentment.org ecosystem",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"start": "concurrently --kill-others \"yarn run watch\" \"yarn run storybook\"",
"watch": "babel src --out-dir lib --watch",
"lint": "eslint .",
"precommit": "lint-staged",
"build": "babel src --out-dir lib",
"storybook": "start-storybook -p 9001 -s ./static -c .storybook",
"build-storybook": "build-storybook -c .storybook -o .out",
"deploy-storybook": "storybook-to-ghpages",
"prepublishOnly": "yarn run build",
"format": "prettier --write 'src/**/*.{js,jsx,json}'"
},
"author": "Lakhan Samani <[email protected]>",
"license": "MIT",
"lint-staged": {
"src/*.js": [
"eslint"
]
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@contentment-org/icons": "^1.0.2",
"@storybook/addon-info": "^5.0.11",
"@storybook/addon-knobs": "^5.0.11",
"@storybook/addon-options": "^5.0.11",
"@storybook/react": "^5.0.11",
"@storybook/storybook-deployer": "^2.8.1",
"antd": "^3.19.5",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.0",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"storybook-readme": "^5.0.3",
"styled-components": "^4.2.0"
},
"peerDependencies": {
"@contentment-org/icons": "^1.0.2",
"antd": "^3.19.5",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"styled-components": "^4.2.0"
}
}