-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.43 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
{
"name": "tobus.ca",
"version": "1.0.1",
"private": true,
"homepage": "https://thomassth.github.io/ttc-eta/",
"type": "module",
"dependencies": {
"@fluentui/react-components": "^9.54.15",
"@fluentui/react-icons": "^2.0.258",
"@reduxjs/toolkit": "^2.2.7",
"i18next": "^23.15.1",
"i18next-browser-languagedetector": "^8.0.0",
"idb": "^8.0.0",
"ol": "^10.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",
"rlayers": "^3.1.0",
"typescript": "^5.6.2",
"web-vitals": "^4.2.3"
},
"scripts": {
"start": "vite",
"dev": "vite --host",
"build": "vite build",
"build:cd": "vite build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "npx prettier --write .",
"prebuild": "npm run format && npm run lint",
"test": "vitest"
},
"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": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-test-renderer": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/ui": "^2.1.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.36.1",
"jsdom": "^25.0.0",
"postcss": "^8.4.45",
"postcss-nesting": "^13.0.0",
"prettier": "^3.3.3",
"react-test-renderer": "^18.3.1",
"stylelint": "^16.9.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard": "^36.0.1",
"ts-node": "^10.9.2",
"vite": "^5.4.4",
"vite-plugin-pwa": "^0.20.5",
"vitest": "^2.1.0"
}
}