-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.69 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
{
"name": "rc-json-editor",
"version": "2.0.35",
"description": "A simple JSON Editor React Component",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"scripts": {
"watch": "rollup -c -w",
"test": "jest --watch --runInBand",
"coverage": "jest --coverage",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"build": "rollup -c",
"storybook": "start-storybook -p 6006",
"deploy-storybook": "storybook-to-ghpages",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuellawrentz/rc-json-editor.git"
},
"keywords": [
"json-editor",
"JSON",
"react-json-editor",
"json-viewer",
"react-json-tree"
],
"author": "Samuel Lawrentz",
"license": "MIT",
"bugs": {
"url": "https://github.com/samuellawrentz/rc-editor/issues"
},
"homepage": "https://samuellawrentz.github.io/rc-json-editor/",
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-react": "^7.18.6",
"@jest/globals": "^29.3.1",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack4": "^6.5.10",
"@storybook/manager-webpack4": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/storybook-deployer": "^2.8.12",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react": "12.1.2",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"babel-jest": "^29.3.1",
"babel-loader": "^8.2.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.0",
"eslint-plugin-storybook": "^0.6.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"node-sass": "^7.0.1",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.4",
"storybook-addon-sass-postcss": "^0.1.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}