-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.22 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.22 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
{
"name": "@itcode-dev/alpaca-ui",
"version": "0.0.0-alpha5",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/itcode-dev/alpaca-ui",
"author": "RWB0104 <psj2716@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.18.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@types/classnames": "^2.3.1",
"@types/react": "^18.0.12",
"@types/react-icons": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-loader": "^8.2.5",
"babel-plugin-react-icons": "^0.1.1",
"css-loader": "^6.7.1",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-storybook": "^0.6.4",
"postcss": "^8.4.14",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "^2.75.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.52.2",
"sass-loader": "^13.0.0",
"shx": "^0.3.4",
"style-loader": "^3.3.1",
"typescript": "^4.7.3"
},
"dependencies": {
"classnames": "^2.3.1",
"react-icons": "^4.4.0",
"recoil": "^0.7.4",
"style-inject": "^0.3.0"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prebuild": "shx rm -rf ./dist",
"build": "rollup -c",
"postbuild": "shx rm -rf ./dist/dist"
}
}