-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.37 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
{
"name": "snapkit",
"private": true,
"version": "0.2.8",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"package.json"
],
"scripts": {
"dev": "start-storybook -p 6006",
"clean": "rimraf ./dist",
"build": "npm run clean && npm run build:component && npm run build:ts",
"build:css": "sass ./src/styles/index.scss ./dist/index.css",
"build:ts": "tsc --build tsconfig.build.json",
"build:component": "vite build",
"build:storybook": "build-storybook",
"publish:git": "npm run build && publish-to-git",
"publish:local": "npm run build && yalc push --private",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --check \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"format:fix": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" "
},
"peerDependencies": {
"bignumber.js": "^9.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-ui-react": "^2.1.3"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@emotion/css": "^11.10.5",
"@emotion/react": "^11.10.5",
"@faker-js/faker": "^7.5.0",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-vite": "^0.2.5",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@types/eslint": "^8.2.2",
"@types/prettier": "^2.7.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@vitejs/plugin-react": "^2.0.1",
"babel-loader": "^8.2.5",
"bignumber.js": "^9.1.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.6.7",
"prettier": "^2.7.1",
"publish-to-git": "git+https://github.com/reaink/publish-to-git.git",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"sass": "^1.54.7",
"semantic-ui-react": "^2.1.3",
"typescript": "^4.8.3",
"vite": "^3.0.7"
},
"packageManager": "[email protected]"
}