-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.12 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
{
"name": "gymnopedies",
"private": false,
"version": "0.1.16",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"author": {
"name": "shoota"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shoota/gymnopedies.git"
},
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.umd.cjs",
"import": "./dist/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"dev:proxy": "vite & local-ssl-proxy --key localhost-key.pem --cert localhost.pem --source 3001 --target 5173",
"build": "vite build && tsc -p ./tsconfig.build.json",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"typecheck": "tsc -p ./tsconfig.typecheck.json",
"preview": "vite preview",
"prepare": "husky",
"storybook": "storybook dev -p 6006 --https --ssl-ca ./localhost.pem --ssl-cert ./localhost.pem --ssl-key ./localhost-key.pem",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_4388496fa226214"
},
"dependencies": {
"commitizen": "^4.3.0",
"date-fns": "^3.6.0"
},
"devDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@chromatic-com/storybook": "^1.6.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-onboarding": "^8.1.11",
"@storybook/blocks": "^8.1.11",
"@storybook/react": "^8.1.11",
"@storybook/react-vite": "^8.1.11",
"@storybook/test": "^8.1.11",
"@swc/plugin-emotion": "3.0.9",
"@types/node": "^20.14.13",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-swc": "3.7.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"local-ssl-proxy": "^2.0.5",
"prettier": "3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.1.11",
"typescript": "^5.5.4",
"vite": "^5.3.5"
},
"peerDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx}": "npx eslint --fix"
},
"bugs": {
"url": "https://github.com/shoota/gymnopedies/issues"
},
"homepage": "https://github.com/shoota/gymnopedies#readme"
}