-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.75 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.75 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
{
"name": "drupal-react-components",
"version": "0.0.6",
"main": "build/index.js",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production ./node_modules/.bin/webpack --progress --display-modules --config webpack.config.js",
"watch": "./node_modules/.bin/webpack --progress --watch --config webpack.config.js",
"lint": "./node_modules/.bin/eslint -c .eslintrc.json .",
"prettier": "./node_modules/.bin/prettier --write '{src,stories}/**/*.js' 'webpack.config.js'",
"storybook": "./node_modules/.bin/start-storybook -p 1337 -c .storybook",
"build-storybook": "./node_modules/.bin/build-storybook"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.34",
"@babel/preset-env": "^7.0.0-beta.34",
"@babel/preset-react": "^7.0.0-beta.34",
"@storybook/addon-actions": "^3.3.8",
"@storybook/addon-info": "^3.3.14",
"@storybook/addon-links": "^3.3.8",
"@storybook/react": "^3.3.8",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "8.0.0-beta.0",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-emotion": "^8.0.12",
"babel-plugin-transform-class-properties": "7.0.0-beta.3",
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.4.0",
"prettier": "1.9.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"webpack": "^3.10.0"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.38",
"classnames": "^2.2.5",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^16.2.0"
}
}