-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·74 lines (74 loc) · 2.38 KB
/
package.json
File metadata and controls
executable file
·74 lines (74 loc) · 2.38 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
{
"name": "watchlist",
"version": "0.1.0",
"private": true,
"pkg": {
"scripts": [
"node_modules/tedious/lib/tedious.js",
"models/*.js"
],
"assets": [
"config/log.json"
]
},
"scripts": {
"dev": "node writeBuildDate.js && next dev",
"dev:https": "node writeBuildDate.js && next dev --experimental-https",
"build": "next build",
"start": "next start",
"deploy-windows": "xcopy /q /y .env-template .next\\standalone && xcopy /y database-template.json .next\\standalone\\database.json && xcopy /e /i /y public .next\\standalone\\public && xcopy /e /i /y .next\\static .next\\standalone\\.next\\static",
"deploy-unix": "cp .env-template .next/standalone/.env && cp database-template.json .next/standalone/database.json && cp -r public/ .next/standalone && cp -r .next/static .next/standalone/.next",
"cr": "cd .next/standalone && zip -r ../../watchlist.zip . && cd ../..",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.4",
"@mui/material": "^5.15.4",
"@mui/x-charts": "^7.6.2",
"@mui/x-tree-view": "^7.23.2",
"@tailwindcss/postcss": "^4.2.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/cookie": "^0.6.0",
"@types/crypto-js": "^4.2.1",
"@types/jest": "^29.5.14",
"cheerio": "^1.1.2",
"compression": "^1.8.1",
"crypto-js": "^4.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"json5": "^2.2.3",
"next": "16.2.3",
"next-router-mock": "^0.9.13",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"postcss": "^8.5.8",
"prop-types-exact": "^1.2.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-select": "^5.10.1",
"tailwindcss": "^4.2.1",
"tedious": "^18.2.3",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@types/node": "^20",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/request": "^2.48.12",
"baseline-browser-mapping": "^2.9.3",
"concurrently": "^8.2.2",
"eslint-config-next": "16.2.3",
"typescript": "^5"
},
"packageManager": "pnpm@8.15.4",
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}