-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.59 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
{
"name": "@JEbertPrime/sine-waves",
"version": "1.0.0",
"description": "Helper class and react component for rendering sine waves to a canvas",
"author": "Justin Ebert",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/JEbertPrime/sine-waves.git"
},
"homepage": "https://JEbertPrime.github.io/",
"publishConfig": {
"registry": "https://npm.pkg.github.com/JEbertPrime"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "NODE_ENV=development BABEL_ENV=development yarn storybook",
"build": "rimraf dist && NODE_ENV=production BABEL_ENV=production rollup -c",
"lint": "yarn check-types && yarn eslint && yarn stylelint",
"lint:fix": "yarn eslint:fix && yarn stylelint:fix",
"eslint": "eslint . --ext .js,.jsx,.tsx,.ts",
"eslint:fix": "eslint . --ext .js,.jsx,.tsx,.ts --fix",
"stylelint": "stylelint \"**/*.{css,scss,sass}\"",
"stylelint:fix": "stylelint \"**/*.{css,scss,sass}\" --fix",
"check-types": "tsc --noEmit true",
"ci": "yarn lint && yarn test --watch=false",
"test": "vitest --config ./vitest.config.ts",
"release": "yarn ci && yarn build && npm publish",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:deploy": "yarn storybook:build && touch ./storybook-static/.nojekyll && gh-pages -d ./storybook-static -t true"
},
"peerDependencies": {
"clsx": "2.x",
"react": "18.x",
"react-dom": "18.x"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@rollup/plugin-url": "^8.0.2",
"@storybook/addon-docs": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/react-vite": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@svgr/rollup": "^8.1.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"clsx": "^2.0.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"eslint-plugin-storybook": "^0.6.15",
"gh-pages": "^6.0.0",
"jsdom": "^22.1.0",
"node-sass": "^9.0.0",
"postcss": "^8.4.31",
"postcss-scss": "^4.0.9",
"prettier": "3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.14.0",
"rimraf": "^5.0.5",
"rollup": "^4.3.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.69.5",
"storybook": "^7.5.3",
"stylelint": "^15.11.0",
"stylelint-prettier": "^4.0.2",
"stylelint-scss": "^5.3.1",
"tslib": "^2.6.2",
"typescript": "5.2.2",
"vite": "^4.5.0",
"vite-plugin-svgr": "^3.2.0",
"vitest": "^0.34.6"
},
"packageManager": "[email protected]"
}