-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
{
"author": "Florian Imdahl <git@ffflorian.de>",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@material-ui/core": "3.9.4",
"@material-ui/icons": "3.0.2",
"json5": "2.2.3",
"jsonabc": "2.3.1",
"mdi-material-ui": "5.42.0",
"react": "16.14.0",
"react-dom": "16.14.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@evilmartians/lefthook": "1.10.8",
"@ffflorian/eslint-config": "0.10.3",
"@ffflorian/prettier-config": "0.3.3",
"@types/jest": "29.5.14",
"@types/jsonabc": "2.3.3",
"@types/node": "~16",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"babel-eslint": "10.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-jsdoc": "47.0.2",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"eslint-plugin-unused-imports": "4.1.4",
"prettier": "3.4.2",
"react-scripts": "4.0.3",
"rimraf": "5.0.7",
"typescript": "5.7.2"
},
"engines": {
"node": ">= 10.9"
},
"eslintConfig": {
"extends": "react-app"
},
"license": "GPL-3.0",
"name": "sortjson.com",
"prettier": "@ffflorian/prettier-config",
"private": true,
"scripts": {
"build:site": "react-scripts build",
"clear": "rimraf build",
"dist": "yarn clear && yarn build:site",
"fix": "yarn fix:other && yarn fix:ts",
"fix:other": "yarn prettier --write",
"fix:ts": "yarn lint:ts --fix",
"lint": "yarn lint:ts && yarn lint:other",
"lint:other": "yarn prettier --list-different",
"lint:ts": "eslint --ignore-path .gitignore --ext .ts,.tsx src/",
"prettier": "prettier --ignore-path .gitignore \"*.{json,md,yml}\"",
"start": "react-scripts start",
"test": "react-scripts test"
},
"version": "1.5.6"
}