This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.46 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@FashionGPS/components",
"version": "0.2.4",
"description": "A set of React widgets & components",
"main": "lib/index.js",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"precommit": "$(npm bin)/lint-staged",
"lint": "$(npm bin)/eslint src",
"prettier": "$(npm bin)/prettier-standard \"src/**/*.js\"",
"dev": "start-storybook -c ./src/.storybook -p 6006",
"start": "npm rebuild node-sass && yarn dev",
"copy:vars": "$(npm bin)/copyfiles -f ./src/sass/*.scss sass",
"copy:styles": "$(npm bin)/copyfiles -f ./src/components/*/**.scss lib/styles",
"copy:avatar": "$(npm bin)/copyfiles -f ./src/components/popover/avatar-cropper/*.scss lib/styles/avatar-cropper",
"deploy": "now && now alias"
},
"lint-staged": {
"./**/*.js": [
"npm run lint",
"npm run prettier",
"git add"
]
},
"repository": "http://github.com/FashionGPS/components",
"homepage": "https://www.npmjs.com/package/@micabe/components",
"keywords": [
"react",
"storybook",
"theme",
"component",
"widget"
],
"now": {
"alias": "components"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.10",
"@storybook/addon-info": "^3.2.10",
"@storybook/addon-knobs": "^3.2.10",
"@storybook/react": "^3.2.10",
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.3.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.23.0",
"copyfiles": "^1.2.0",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"husky": "^0.14.3",
"json-loader": "^0.5.7",
"lint-staged": "^4.2.3",
"node-sass": "^4.5.3",
"prettier-standard": "^6.0.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-hot-loader": "3.0.0-beta.7",
"sass-loader": "^6.0.6",
"storybook-addon-jsx": "^4.1.1",
"webpack": "^3.6.0",
"webpack-combine-loaders": "^2.0.3"
},
"peerDependencies": {
"autobind-decorator": "^2.1.0",
"color": "^2.0.0",
"cuid": "^1.3.8",
"ease-component": "^1.0.0",
"es6-promise": "^4.1.1",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react-click-outside": "^3.0.0",
"react-dropzone": "micabe/react-dropzone#98fbced",
"react-flex-carousel": "^1.0.1",
"react-infinite-scroll-component": "^2.4.0",
"react-uikit-base": "^2.0.2",
"rheostat": "^2.1.1",
"scroll": "^2.0.1",
"styled-jsx": "^1.0.11"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions",
"> 1%"
]
}
}
],
"react"
],
"plugins": [
"transform-decorators-legacy",
"transform-class-properties",
"transform-object-rest-spread",
"styled-jsx/babel"
]
},
"dependencies": {
"create-react-class": "^15.6.3",
"styled-jsx": "^3.0.2"
}
}