This repository has been archived by the owner on Aug 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "@logiq/library",
"version": "0.3.0",
"main": "dist/index.js",
"module": "dist/index.module.js",
"source": "src/index.js",
"private": false,
"files": [
"dist",
"src",
"README.md"
],
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"prebuild": "npm run clean",
"build": "run-s build:*",
"build:library": "rollup -c",
"build:docs": "build-storybook -o docs",
"clean": "run-s clean:*",
"clean:library": "rm -rf dist",
"clean:docs": "rm -rf docs",
"lint": "eslint src/components/**/*",
"dev": "start-storybook -p 3031 --no-manager-cache"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@rollup/plugin-babel": "^5.3.0",
"@storybook/addon-a11y": "^6.2.9",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/react": "^6.2.9",
"@storybook/theming": "^6.2.9",
"babel-loader": "^8.2.2",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"install": "^0.13.0",
"npm": "^7.11.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.14",
"react": "*",
"react-dom": "*",
"rollup": "^2.44.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"storybook-css-modules-preset": "^1.0.8"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}