-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.19 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.19 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
{
"name": "@drupal/admin-ui-components",
"version": "0.1.0",
"license": "MIT",
"private": true,
"main": "build/index.js",
"sideEffects": false,
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.config.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.config.js",
"postinstall": "npm run build",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"dependencies": {
"@material-ui/core": "^3.6.1",
"emotion": "^10.0.1",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.0.0",
"storybook-addon-figma": "^0.1.0",
"@storybook/addon-knobs": "^5.0.0",
"@storybook/addons": "^5.0.0",
"@storybook/react": "^5.0.0",
"babel-loader": "8.0.4",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-emotion": "^10.0.0",
"storybook": "^1.0.0",
"storybook-addon-jsx": "^7.1.3",
"webpack": "4.19.1",
"webpack-cli": "^3.1.2"
},
"peerDependencies": {
"react": "^16.6.3"
}
}