-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.09 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "djin",
"version": "1.2.0",
"private": true,
"dependencies": {
"@fontsource/roboto": "^4.5.1",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/pickers": "^3.3.10",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@tsmx/json-traverse": "^1.0.5",
"@types/jest": "^27.0.2",
"@types/luxon": "^2.0.5",
"@types/node": "^16.11.6",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-linkify": "^1.0.1",
"clsx": "^1.1.1",
"eslint-plugin-react": "^7.26.1",
"firebase": "^9.3.0",
"immutable": "^4.0.0",
"json-logic-js": "^2.0.1",
"lodash": "^4.17.20",
"luxon": "^2.0.2",
"material-ui-confirm": "2.1.3",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-awesome-query-builder": "^4.7.0",
"react-dom": "^17.0.2",
"react-embed": "^3.3.3",
"react-linkify": "^1.0.0-alpha",
"react-router-dom": "5.3.0",
"react-scripts": "4.0.3",
"serialize-query-params": "^1.3.5",
"swr": "^1.0.1",
"typescript": "~4.4.4",
"use-query-params": "^1.2.3"
},
"scripts": {
"depcheck": "yarn-check",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:ci": "react-scripts test --watchAll=false",
"eject": "react-scripts eject",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"lint:ci": "eslint '*/**/*.{js,ts,tsx}'",
"deploy:ci": "yarn install && run-s lint:ci test:ci build",
"prepare": "husky install",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/node-logger": "^6.3.12",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.12",
"@types/json-logic-js": "^1.2.1",
"@types/lodash": "^4.14.176",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"dotenv": "^10.0.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"yarn-check": "^0.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*/**/*.{js,ts,tsx}": [
"eslint --fix"
]
}
}