-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.89 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.89 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "fairy-teachers",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@emotion/react": "11.8.1",
"@emotion/styled": "11.8.1",
"@reduxjs/toolkit": "1.7.1",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@types/fontfaceobserver": "2.1.0",
"@types/jest": "27.4.0",
"@types/node": "14.14.31",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@types/react-redux": "7.1.22",
"@types/react-router-dom": "5.3.2",
"@types/react-test-renderer": "17.0.1",
"@types/rimraf": "3.0.2",
"@types/shelljs": "0.8.11",
"@types/styled-components": "5.1.20",
"@types/testing-library__jest-dom": "5.14.2",
"@types/webpack": "5.28.0",
"@types/webpack-env": "1.16.3",
"@vitejs/plugin-react": "1.2.0",
"axios": "0.26.1",
"babel-jest": "27.5.1",
"babel-plugin-transform-export-extensions": "6.22.0",
"chalk": "4.1.2",
"cross-env": "7.0.3",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react-hooks": "4.3.0",
"fontfaceobserver": "2.1.0",
"husky": "7.0.4",
"i18next": "21.6.6",
"i18next-browser-languagedetector": "6.1.2",
"i18next-scanner": "3.1.0",
"inquirer": "7.3.3",
"inquirer-directory": "2.2.0",
"jest-styled-components": "7.0.8",
"json-server": "0.17.0",
"lint-staged": "12.1.7",
"mui-rff": "3.0.16",
"node-plop": "0.26.2",
"plop": "2.7.4",
"prettier": "2.5.1",
"ra-data-json-server": "3.19.8",
"ra-input-rich-text": "3.19.10",
"rc-virtual-list": "3.4.2",
"react": "17.0.2",
"react-admin": "3.19.8",
"react-admin-date-inputs": "vascofg/react-admin-date-inputs#47/head",
"react-app-polyfill": "3.0.0",
"react-dom": "17.0.2",
"react-fade-in": "2.0.1",
"react-final-form": "6.5.8",
"react-helmet-async": "1.2.2",
"react-i18next": "11.15.3",
"react-input-mask": "3.0.0-alpha.2",
"react-is": "17.0.2",
"react-redux": "7.2.6",
"react-scripts": "5.0.0",
"react-test-renderer": "17.0.2",
"redux-form": "8.3.8",
"redux-injectors": "1.3.0",
"redux-saga": "1.1.3",
"rimraf": "3.0.2",
"sanitize.css": "13.0.0",
"serve": "13.0.2",
"shelljs": "0.8.5",
"styled-components": "5.3.3",
"stylelint": "14.2.0",
"stylelint-config-recommended": "6.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"ts-jest": "27.1.3",
"ts-node": "10.4.0",
"typescript": "4.5.4",
"vite": "2.8.6",
"vite-plugin-env-compatible": "1.1.1",
"vite-plugin-svgr": "1.0.1",
"vite-tsconfig-paths": "3.4.1",
"web-vitals": "2.1.2",
"zustand": "3.7.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "react-scripts test",
"serve": "vite preview",
"eject": "react-scripts eject",
"start:prod": "yarn run build && serve -s build",
"test:generators": "ts-node ./internals/testing/generators/test-generators.ts",
"checkTs": "tsc --noEmit",
"eslint": "eslint --ext js,ts,tsx",
"lint": "yarn run eslint src",
"lint:fix": "yarn run eslint --fix src",
"lint:css": "stylelint src/**/*.css",
"generate": "plop --plopfile internals/generators/plopfile.ts",
"prettify": "prettier --write",
"extract-messages": "i18next-scanner --config=internals/extractMessages/i18next-scanner.config.js",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=14.x"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn run eslint --fix"
],
"*.{md,json}": [
"prettier --write"
]
}
}