-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.31 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@auspices/eos",
"version": "0.0.0-development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/auspices/eos.git"
},
"author": "@dzucconi",
"license": "MIT",
"private": false,
"scripts": {
"build:storybook": "build-storybook",
"build": "yarn clean && tsc -p .",
"clean": "rm -rf dist",
"lint": "eslint src --ext .tsx,.ts --fix",
"format": "prettier --write '**/*'",
"prepublishOnly": "yarn build",
"semantic-release": "semantic-release",
"start": "yarn storybook",
"storybook": "start-storybook -p 6006",
"type:check": "tsc --noEmit",
"unlink-all": "yalc remove --all && yarn --check-files"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"styled-components": ">=5.0.0"
},
"dependencies": {
"@popperjs/core": "^2.11.5",
"@seznam/compose-react-refs": "^1.0.5",
"@styled-system/theme-get": "^5.1.2",
"@types/styled-system": "5.1.23",
"@types/styled-system__theme-get": "5.0.4",
"proportional-scale": "^4.0.0",
"react-focus-on": "^3.6.0",
"styled-reset": "^4.4.2",
"styled-system": "^5.1.5",
"use-keyboard-list-navigation": "^2.2.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-links": "6.5.16",
"@storybook/addon-viewport": "6.5.16",
"@storybook/addons": "6.5.16",
"@storybook/react": "6.5.16",
"@types/node": "18.19.61",
"@types/react-dom": "18.3.1",
"@types/styled-components": "5.1.34",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-loader": "8.4.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"prettier": "2.8.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"semantic-release": "19.0.5",
"storybook-states": "1.2.0",
"styled-components": "5.3.11",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}