-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
94 lines (94 loc) · 3.14 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
89
90
91
92
93
94
{
"name": "peanut",
"version": "3.3.0",
"private": true,
"scripts": {
"clean": "rm -rf .next .swc coverage test-results",
"dev": "docker compose up -d && next dev --turbo && docker compose down",
"build": "next build",
"build:local": "npm run build && cp -r .next/static .next/standalone/.next/",
"build:analyze": "ANALYZE=true next build",
"start": "HOSTNAME=$WEB_HOST PORT=$WEB_PORT node server.js",
"start:local": "node .next/standalone/server.js",
"type-check": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"stylelint": "stylelint \"**/*.{css,scss}\"",
"stylelint:fix": "npm run stylelint -- --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"precheck": "concurrently \"npm run type-check\" \"npm run lint\" \"npm run format\"",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e": "playwright test && docker compose down",
"test:all": "concurrently \"npm run test\" \"npm run test:e2e\"",
"deploy": "./scripts/deploy.sh",
"deploy:test": "./scripts/deploy-test.sh",
"telemetry": "next telemetry disable",
"prepare": "husky"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@influxdata/influxdb-client": "^1.35.0",
"@material-tailwind/react": "^2.1.10",
"@tanstack/react-query": "^5.59.20",
"chart.js": "^4.4.6",
"chartjs-plugin-annotation": "^3.1.0",
"i18next": "^23.16.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-resources-to-backend": "^1.2.1",
"js-yaml": "^4.1.0",
"ldrs": "^1.0.2",
"next": "^15.0.3",
"next-i18next": "^15.3.1",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.1",
"react-toastify": "^10.0.6",
"tailwindcss-animated": "^1.1.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.2",
"@eslint/js": "^9.14.0",
"@next/bundle-analyzer": "^15.0.3",
"@next/eslint-plugin-next": "^15.0.3",
"@playwright/test": "^1.48.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "^18.3.1",
"@types/swagger-ui-react": "^4.18.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"next-swagger-doc": "^0.4.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"swagger-ui-react": "^5.18.2",
"tailwindcss": "^3.4.14",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.13.0"
},
"resolutions": {
"@types/react": "18.2.42"
}
}