-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.5 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.5 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
78
79
80
{
"name": "core-ui",
"version": "0.0.1",
"description": "A library of React components for building the UI of FX-Solutions products.",
"author": "FX-Solutions",
"license": "MIT",
"repository": "git+https://github.com/FX-Solutions/core-ui.git",
"bugs": {
"url": "https://github.com/FX-Solutions/core-ui/issues"
},
"homepage": "https://github.com/FX-Solutions/core-ui#readme",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"format": "prettier --write .",
"dev": "yarn storybook:dev",
"storybook:dev": "start-storybook -p 6006",
"storybook:build": "build-storybook -o storybook_canvas",
"storybook:build:docs": "build-storybook --docs -o docs",
"build:clean": "rimraf dist",
"build:rollup": "rollup -c",
"build": "yarn build:clean && yarn build:rollup",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-interactions": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "6.5.16",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/react": "6.5.16",
"@storybook/testing-library": "0.0.13",
"@types/react": "18.0.28",
"autoprefixer": "^10.4.13",
"babel-loader": "8.3.0",
"eslint": "8.35.0",
"eslint-plugin-storybook": "^0.6.11",
"husky": "8.0.3",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"prettier": "2.8.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "4.1.2",
"rollup": "3.17.3",
"rollup-plugin-dts": "5.2.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-typescript2": "0.34.1",
"standard": "17.0.0",
"storybook-dark-mode": "2.1.1",
"tailwindcss": "3.2.7",
"tslib": "2.5.0",
"typescript": "4.9.5"
},
"peerDependencies": {
"react": "18.2.0"
},
"husky": {
"hooks": {
"pre-commit": "(yarn lint:fix) -and (yarn format)"
}
},
"dependencies": {
"@rollup/plugin-typescript": "^11.0.0"
}
}