-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.45 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
{
"name": "@eveshipfit/react",
"publishConfig": {
"registry": "https://npm.pkg.github.com/EVEShipFit"
},
"version": "0.0.0-git",
"description": "React component library to quickly and easily show EVE Online ship fits in your own application",
"scripts": {
"build": "rollup -c",
"build-storybook": "storybook build",
"dev": "storybook dev -p 6006 --no-open",
"format": "prettier -w .storybook src",
"lint": "eslint .storybook src --ext .js,.ts,.tsx --cache && prettier -c .storybook src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EVEShipFit/react.git"
},
"author": "EVEShipFit Team <[email protected]>",
"license": "MIT",
"dependencies": {
"clsx": "^2",
"jwt-decode": "^4"
},
"devDependencies": {
"@babel/preset-env": "^7",
"@babel/preset-react": "^7",
"@babel/preset-typescript": "^7",
"@rollup/plugin-commonjs": "^25",
"@rollup/plugin-node-resolve": "^15",
"@rollup/plugin-terser": "^0",
"@storybook/addon-essentials": "^8",
"@storybook/addon-interactions": "^8",
"@storybook/addon-links": "^8",
"@storybook/addon-webpack5-compiler-babel": "^3",
"@storybook/blocks": "^8",
"@storybook/preview-api": "^8",
"@storybook/react": "^8",
"@storybook/react-webpack5": "^8",
"@storybook/test": "^8",
"@storybook/types": "^8",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"eslint": "^8",
"eslint-config-airbnb": "19",
"eslint-config-airbnb-typescript": "^18",
"eslint-config-prettier": "^9",
"eslint-import-resolver-typescript": "^3",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-prettier": "^5",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"eslint-plugin-storybook": "^0",
"react": "^18",
"react-dom": "^18",
"rollup": "^4",
"rollup-plugin-dts": "^6",
"rollup-plugin-esbuild": "^6",
"rollup-plugin-node-externals": "^7",
"rollup-plugin-postcss": "^4",
"rollup-plugin-typescript-paths": "^1",
"storybook": "^8",
"tslib": "^2",
"typescript": "^5",
"typescript-plugin-css-modules": "^5"
},
"peerDependencies": {
"@eveshipfit/data": "^10",
"@eveshipfit/dogma-engine": "^7",
"react": "^18",
"react-dom": "^18"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts"
}