-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.14 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "alys",
"version": "0.4.0",
"description": "A tiny React component library",
"keywords": [
"React",
"UI",
"component",
"library"
],
"license": "Apache-2.0",
"author": "Rodger Jordas <rmjordas@gmail.com> (https://rmjordas.github.io)",
"homepage": "https://alys.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/rmjordas/alys.git"
},
"bugs": {
"url": "https://github.com/rmjordas/alys/issues"
},
"files": [
"lib"
],
"main": "dist/index.js",
"scripts": {
"build": "build-storybook -s public",
"build:docs": "build-storybook -s public --docs",
"dev": "start-storybook -s public,audio -p 6006",
"dev:docs": "start-storybook -s public,audio -p 6006 --docs",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"format:fix": "prettier \"src/**/*.{js,jsx,html}\" --write"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@emotion/core": "^10.0.27",
"@ruj/prettier-config": "^1.0.0",
"@storybook/addon-actions": "^5.3.6",
"@storybook/addon-docs": "^5.3.6",
"@storybook/addon-links": "^5.3.6",
"@storybook/addons": "^5.3.6",
"@storybook/react": "^5.3.6",
"@storybook/theming": "^5.3.6",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^10.0.27",
"emotion-theming": "^10.0.27",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"firebase-tools": "^7.12.1",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-is": "^16.12.0"
},
"peerDependencies": {
"@emotion/core": "^10.0.27",
"emotion-theming": "^10.0.27",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"engines": {
"node": ">=12",
"npm": ">=6"
},
"dependencies": {}
}