-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.13 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.13 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
{
"name": "flamerelay",
"version": "0.1.0",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"babel-jest": "^30.3.0",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"mini-css-extract-plugin": "^2.4.5",
"postcss": "^8.3.11",
"postcss-loader": "^8.0.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"webpack": "^5.82.0",
"webpack-bundle-tracker": "^3.0.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.0.2",
"webpack-merge": "^6.0.1"
},
"engines": {
"node": "24.14"
},
"browserslist": [
"last 2 versions"
],
"babel": {
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
],
"@babel/preset-typescript"
]
},
"jest": {
"roots": [
"<rootDir>/flamerelay/static/js"
],
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(ts|tsx|js|jsx)$": "babel-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"scripts": {
"dev": "webpack serve --config webpack/dev.config.js",
"build": "webpack --config webpack/prod.config.js",
"lint": "eslint --max-warnings 0 flamerelay/static/js/",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"dependencies": {
"cobe": "^2.0.1",
"maplibre-gl": "^5.6.0",
"qrcode": "^1.5.4",
"react-map-gl": "^8.0.4",
"react-router-dom": "^7.14.1"
}
}