-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2 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
{
"name": "@techfreaque/json-editor-react",
"version": "1.4.17",
"description": "React version of the awesome json-editor https://github.com/json-editor/json-editor",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"private": false,
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "npm run prebuild && tsc && npm run copy-css",
"copy-css": "copyfiles -u 1 src/**/*.css dist/",
"version": "npm run build && npm publish",
"release-with-book": "npm run build && storybook build -o docs && npm publish",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techfreaque/json-editor-react.git"
},
"keywords": [
"react-json-editor",
"Json Schema based editor"
],
"author": "Techfreaque",
"license": "MIT",
"bugs": {
"url": "https://github.com/techfreaque/json-editor-react/issues"
},
"homepage": "https://techfreaque.github.io/json-editor-react",
"dependencies": {
"@json-editor/json-editor": "2.15.1",
"bootstrap": "5.3.3",
"import": "^0.0.6",
"react-dom": "18.3.1",
"select2": "^4.1.0-rc.0",
"spectre.css": "0.5.9"
},
"peerDependencies": {
"react": "^18.0.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-mdx-gfm": "^8.0.9",
"@storybook/addon-onboarding": "^8.0.9",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
"@storybook/blocks": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-webpack5": "^8.0.9",
"@storybook/test": "^8.0.9",
"@types/react": "^18.3.3",
"copyfiles": "^2.4.1",
"rimraf": "^5.0.7",
"storybook": "^8.1.3",
"typescript": "^5.4.5"
}
}