-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"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",
"build": "next build",
"start": "next start",
"deploy-windows": "xcopy /e /i public .next/standalone && xcopy /e /i .next/static .next/standalone/.next",
"deploy-unix": "cp -r public/ .next/standalone && cp -r .next/static .next/standalone/.next",
"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",
"@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",
"axios": "^1.6.5",
"connect-sqlite3": "^0.9.13",
"crypto-js": "^4.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json5": "^2.2.3",
"multiselect-react-dropdown": "^2.0.25",
"next": "^15.1.0",
"next-pwa": "^5.6.0",
"next-router-mock": "^0.9.13",
"node-fetch": "^3.3.2",
"prop-types-exact": "^1.2.0",
"react": "^18",
"react-dom": "^18",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"tedious": "^18.2.3",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/request": "^2.48.12",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"typescript": "^5"
},
"packageManager": "pnpm@8.15.4"
}