-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.26 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
{
"name": "@adorkable/eunomia-typescript-react",
"version": "0.5.1",
"description": "The team's go-to utilities for Typescript and React, named for the Greek goddess of green pastures, law and legislation",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"deploy-storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adorkable/eunomia-typescript-react.git"
},
"keywords": [
"typescript",
"react",
"eunomia",
"adorkable"
],
"author": "Ian G <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Adorkable/eunomia-typescript-react/issues"
},
"homepage": "https://github.com/Adorkable/eunomia-typescript-react",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@storybook/addon-essentials": "^7.0.26",
"@storybook/addon-interactions": "^7.0.26",
"@storybook/addon-links": "^7.0.26",
"@storybook/blocks": "^7.0.26",
"@storybook/react": "^7.0.26",
"@storybook/react-vite": "^7.0.26",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/mapbox-gl": "^2.7.11",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/three": "^0.153.0",
"eslint-plugin-storybook": "^0.6.12",
"mock-socket": "^9.2.1",
"postcss": "^8.4.25",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.26.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^7.0.26",
"typescript": "^5.1.6"
},
"peerDependencies": {
"mapbox-gl": "^2.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.138.0"
},
"dependencies": {
"@adorkable/eunomia-typescript": "^0.4.2"
},
"files": [
"lib"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}