-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.62 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
{
"name": "solid-joystick",
"version": "1.2.0",
"author": "[email protected]",
"description": "A highly configurable joystick component built in and for use in SolidJS",
"repository": "https://github.com/EthanStandel/solid-joystick",
"private": false,
"files": [
"dist"
],
"main": "./dist/lib.umd.js",
"module": "./dist/lib.es.js",
"types": "./dist/lib.d.ts",
"exports": {
".": {
"import": "./dist/lib.es.js",
"require": "./dist/lib.umd.js"
}
},
"scripts": {
"prepare": "husky install",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint:fix": "eslint --fix .",
"start": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages && npm run fix-deploy",
"fix-deploy": "node ./scripts/fix-storybook-to-ghpages-deploy.js",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"peerDependencies": {
"solid-js": "^1.4.4"
},
"devDependencies": {
"@babel/core": " ^7.0.0",
"@babel/preset-env": "^7.18.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/format": "^13.1.0",
"@commitlint/types": "^13.1.0",
"@emotion/css": "^11.9.0",
"@mdx-js/react": "1.6.22",
"@storybook/addon-actions": "6.5.0-alpha.61",
"@storybook/addon-backgrounds": "6.5.0-alpha.61",
"@storybook/addon-docs": "6.5.0-alpha.61",
"@storybook/addon-essentials": "6.5.0-alpha.61",
"@storybook/addon-interactions": "^6.5.8",
"@storybook/addon-links": "6.5.0-alpha.61",
"@storybook/addon-measure": "6.5.0-alpha.61",
"@storybook/addon-outline": "6.5.0-alpha.61",
"@storybook/builder-vite": "^0.1.27",
"@storybook/client-api": "6.5.0-alpha.61",
"@storybook/client-logger": "6.5.0-alpha.61",
"@storybook/core-common": "6.5.0-alpha.61",
"@storybook/html": "6.5.0-alpha.61",
"@storybook/storybook-deployer": "^2.8.11",
"@storybook/testing-library": "^0.0.12",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"babel-loader": "^8.2.5",
"babel-preset-solid": "^1.4.4",
"conventional-changelog-atom": "^2.0.8",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^13.0.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"solid-js": "^1.4.4",
"typescript": "^4.6.4",
"vite": "^2.9.9",
"vite-plugin-dts": "^1.2.0",
"vite-plugin-solid": "^2.2.6"
},
"lint-staged": {
"./src/**/*.{ts,tsx}": "npx eslint"
}
}