-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.42 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@seokzin/space",
"version": "1.0.1",
"description": "seokzin's design system",
"author": "seokzin",
"license": "MIT",
"keywords": [
"design system",
"react",
"styled-components",
"typescript",
"storybook"
],
"scripts": {
"storybook": "start-storybook -p 6006",
"build": "yarn clear && rollup -c rollup.config.ts --configPlugin typescript",
"build:storybook": "build-storybook",
"clean": "rm -rf dist node_modules storybook-static yarn.lock coverage",
"reinstall": "yarn clean && yarn install",
"publish": "npm publish",
"lint": "eslint --ext .ts,.tsx,.js,.jsx .",
"lint:css": "stylelint \"**/*.(ts|tsx|css)\"",
"format": "prettier \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\" --write",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --watchAll=false --coverage",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts, tsx}": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
]
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@storybook/addon-a11y": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.24",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-storybook": "^0.6.7",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"lint-staged": "^13.0.3",
"postcss": "8",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.2.5",
"storybook-dark-mode": "^1.1.2",
"styled-components": "^5.3.6",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.1.0",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/seokzin"
}
}