-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.75 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.75 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
{
"name": "mta-oba-react",
"version": "0.5.30-SNAPSHOT",
"description": "",
"main": "index.tsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack --mode production --config webpack.config.js",
"dev-start": "NODE_ENV=development webpack serve --config webpack.config.js",
"dev-start:clean": "npx madge --circular src; rm -rf dist .webpack-cache .tsbuildinfo; webpack serve --config webpack.config.js",
"serve": "npx serve -l 8082 dist",
"acceptTracking": "node logger.js",
"build-css": "sass src/css:public/css && postcss public/css/*.css --use autoprefixer --no-map -d public/css/",
"watch-sass": "sass --watch src/css:tmp/css",
"watch-prefix": "onchange \"tmp/css/*.css\" -- npx postcss {{changed}} --use autoprefixer --no-map -d public/css/",
"watch-tailwind": "npx @tailwindcss/cli -i ./src/css/tailwind.css -o ./public/css/tailwind.css --watch",
"dev-css": "npm run build-css && concurrently \"npm run watch-sass\" \"npm run watch-prefix\"",
"dev": "concurrently \"npm run dev-start:clean\" \"npm run dev-css\""
},
"keywords": [],
"author": "",
"license": "ISC",
"browserslist": [
"last 2 versions"
],
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.24.7",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.2.1",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.24",
"babel-loader": "^9.1.3",
"babel-preset-react": "^6.24.1",
"concurrently": "^9.2.1",
"css-loader": "^6.10.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"onchange": "^7.1.0",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-loader": "^8.2.1",
"react-router-dom": "^6.24.1",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"style-loader": "^3.3.4",
"svg-inline-loader": "^0.8.2",
"typescript": "^5.5.4",
"webpack": "^5.105.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"clsx": "^2.1.1",
"copy-webpack-plugin": "^13.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dompurify": "^3.2.6",
"express": "^5.1.0",
"js-cookie": "^3.0.5",
"log4js": "^6.9.1",
"loglevel": "^1.9.2",
"mini-css-extract-plugin": "^2.10.0",
"query-string": "^9.0.0",
"react": "^18.3.1",
"react-autosuggest": "^10.1.0",
"react-dom": "^18.3.1",
"react-leaflet": "^4.2.1",
"react-leaflet-google-layer": "^2.2.0",
"react-router": "^6.23.1",
"react-select": "^5.8.0",
"react-svg": "^16.1.33",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"uuid": "^11.1.0"
}
}