-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.37 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
{
"name": "template",
"version": "1.0.0",
"description": "React Template w/ Mantine, Redux, React Router, Helmet Async, Axios, and more..",
"main": "index.ts",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"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",
"cleanAndSetup": "ts-node ./internals/scripts/clean.ts",
"prettify": "prettier --write",
"extract-messages": "i18next-scanner --config=internals/extractMessages/i18next-scanner.config.js"
},
"repository": {
"type": "git",
"url": "cra-template-raikowski"
},
"keywords": [
"raikowski",
"mantine",
"redux",
"react-router",
"helmet-async"
],
"author": "Robert Raikowski",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.10.6",
"@mantine/core": "^6.0.1",
"@mantine/hooks": "^6.0.1",
"@reduxjs/toolkit": "^1.9.3",
"@tabler/icons": "^2.10.0",
"axios": "^1.3.4",
"framer-motion": "^10.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-scripts": "^5.0.1",
"redux": "^4.2.1",
"web-vitals": "^3.3.0"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.1",
"@types/react": "^18.0.28",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"webpack": "^5.76.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}