-
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) · 2.08 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.08 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
{
"name": "@iola/elements",
"version": "0.1.0",
"description": "Collection of iola Custom Elements",
"main": "dist/index.js",
"repository": "git@gitlab.com:iola-team/elements.git",
"author": "iola",
"dependencies": {
"@iola/custom-element": "git+ssh://git@gitlab.com:iola-team/custom-element.git",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-color": "^2.17.3",
"react-dom": "^16.9.0",
"react-dropzone": "^10.1.8"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@storybook/addon-actions": "^5.1.11",
"@storybook/addon-centered": "^5.1.11",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-knobs": "^5.1.11",
"@storybook/addon-options": "^5.1.11",
"@storybook/html": "^5.1.11",
"@types/common-tags": "^1.8.0",
"@types/react": "^16.9.2",
"@types/storybook__addon-knobs": "^5.0.3",
"@types/storybook__html": "^5.0.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"common-tags": "^1.8.0",
"css-loader": "^3.2.0",
"eslint": "^6.3.0",
"eslint-plugin-react": "^7.14.3",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.0",
"to-string-loader": "^1.1.5",
"typescript": "^3.6.3",
"url-loader": "^2.1.0",
"webpack": "^4.39.3",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.8",
"webpack-merge": "^4.2.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"lint": "eslint \"./src/**/*.js\" --quiet; exit 0",
"build": "webpack --config .webpack/config.js",
"build:analyse": "webpack --env.analyse --config .webpack/config.js"
}
}