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
|
{
"name": "webao",
"version": "2.9.0",
"description": "Web-based Attorney Online client",
"main": "client.js",
"scripts": {
"babel": "babel ui.js -o ui.b.js",
"webpack": "webpack",
"deploy": "cross-env NODE_ENV=production webpack -p",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "bun build.js",
"start": "webpack serve --config webpack.config.js --mode development",
"lint": "eslint webAO --ext .js",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AttorneyOnline/webAO.git"
},
"author": "stonedDiscord",
"bugs": {
"url": "https://github.com/AttorneyOnline/webAO/issues"
},
"homepage": "https://github.com/AttorneyOnline/webAO#readme",
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@happy-dom/global-registrator": "^20.0.11",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.130",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^30.2.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^11.0.0",
"dotenv": "^16.6.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"glob": "^7.2.3",
"html-webpack-plugin": "^5.6.5",
"husky": "^8.0.3",
"jest": "^29.7.0",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.2",
"workbox-webpack-plugin": "^7.4.0"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^3.4.2",
"@types/websocket": "^1.0.10",
"core-js": "^3.47.0",
"esbuild-loader": "^4.4.2",
"golden-layout": "^2.6.0",
"jest-environment-jsdom": "^29.7.0",
"regenerator-runtime": "^0.13.11",
"source-map-loader": "^4.0.2",
"ts-loader": "^9.5.4"
},
"browserslist": [
"defaults",
"Safari > 3",
"Opera > 8",
"Android > 3"
]
}
|