forked from sujinleeme/json-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.65 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.65 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "react-json-editor",
"author": {
"name": "Sujin Lee",
"email": "sujinlee.me@gmail.com",
"url": "https://sujinlee.me/"
},
"description": "A simple online json editor",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/sujinleeme/react-json-editor"
},
"keywords": [
"json",
"react",
"json-editor",
"monaco-editor"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sujinleeme/react-json-editor/issues"
},
"homepage": "/react-json-editor/",
"dependencies": {
"@fluentui/react": "^7.158.1",
"@monaco-editor/react": "^4.0.9",
"ajv": "^7.0.3",
"dirty-json": "^0.9.2",
"monaco-editor": "^0.22.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.2",
"typescript": "^4.0.3",
"uuid": "^8.3.2",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "CI=true react-scripts test",
"test:coverage": "yarn test --coverage",
"eject": "react-scripts eject",
"format": "prettier --write src/**/*.ts{,x}",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn test",
"pre-push": "lint-staged && yarn test"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn lint --fix"
],
"*.{json,md,html}": [
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.0.3",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-airbnb-typescript-prettier": "^4.1.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"gh-pages": "^3.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3"
}
}