aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/package.json
blob: 1cc2432f88f723c47d9a120af0f34b95c8737ed7 (plain) (blame)
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
{
  "name": "app",
  "private": true,
  "version": "0.0.0",
  "scripts": {
    "dev": "vite --port 3000",
    "build": "vite build",
    "preview": "vite preview",
    "prepare": "cd ../../../ && husky install client/js/app/.husky",
    "test": "jest",
    "lint": "eslint '{**/*,*}.{js,jsx}'"
  },
  "dependencies": {
    "react": "^18",
    "react-dom": "^18"
  },
  "devDependencies": {
    "@emotion/react": "^11",
    "@fortawesome/fontawesome-svg-core": "^6",
    "@fortawesome/free-regular-svg-icons": "^6",
    "@fortawesome/free-solid-svg-icons": "^6",
    "@fortawesome/react-fontawesome": "^0",
    "@mantine/core": "^5",
    "@mantine/hooks": "^5",
    "@mantine/notifications": "^5",
    "@vitejs/plugin-react": "^4",
    "esbuild-jest": "^0",
    "eslint": "^8",
    "eslint-plugin-import": "^2",
    "eslint-plugin-prettier": "^5",
    "eslint-plugin-react": "^7",
    "eslint-plugin-react-hooks": "^4",
    "eslint-plugin-react-perf": "^3",
    "eslint-plugin-unused-imports": "^3",
    "husky": "^9.0.0",
    "jest": "^29",
    "lodash": "^4",
    "prettier": "3",
    "pretty-quick": "^4.0.0",
    "react-router-dom": "^6",
    "use-context-selector": "^1",
    "vite": "^5.0.5"
  },
  "jest": {
    "testMatch": [
      "<rootDir>/src/**/*.test.{js,jsx,ts,tsx}"
    ],
    "transform": {
      "^.+\\.(js|jsx|mjs|cjs|ts|tsx)$": [
        "esbuild-jest"
      ]
    },
    "transformIgnorePatterns": [
      "[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|cjs|ts|tsx)$"
    ],
    "moduleNameMapper": {
      "^app/(.*)$": [
        "<rootDir>/src/app/$1"
      ]
    },
    "resetMocks": true
  }
}