forked from revertinc/revert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.95 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
{
"name": "@revertdotdev/revert-react",
"version": "0.0.17-rc2",
"repository": {
"type": "git",
"url": "https://github.com/revertinc/revert.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"publish": "npm publish --access public"
},
"dependencies": {
"@revertdotdev/revert-react": "^0.0.17-rc2",
"react-script-hook": "^1.7.2"
},
"devDependencies": {
"@babel/core": "7.22.11",
"@storybook/addon-a11y": "6.5.0-alpha.50",
"@storybook/addon-actions": "6.5.0-alpha.50",
"@storybook/addon-docs": "6.5.0-alpha.50",
"@storybook/addon-essentials": "6.5.0-alpha.50",
"@storybook/addon-links": "7.4.5",
"@storybook/react": "6.5.0-alpha.49",
"@types/node": "20.8.2",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/styled-components": "5.1.24",
"@vitejs/plugin-react": "1.2.0",
"acorn-jsx": "5.3.2",
"babel-loader": "8.2.4",
"json": "11.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"storybook-builder-vite": "0.1.23",
"typescript": "4.6.3",
"vite": "4.4.9",
"vite-plugin-dts": "1.0.3"
},
"license": "UNLICENSED",
"peerDependencies": {
"react": ">=16.x",
"react-dom": ">=16.x"
},
"files": [
"dist"
],
"main": "./dist/revert-react.umd.j",
"module": "./dist/revert-react.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/revert-react.es.js",
"require": "./dist/revert-react.umd.js"
}
},
"engines": {
"node": ">=16.0.0"
}
}