forked from AttorneyOnline/webAO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "webao",
"version": "2.6.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": "webpack --config webpack.config.js",
"start": "webpack serve --config webpack.config.js",
"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.17.5",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.4",
"dotenv": "^16.0.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"glob": "^7.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"workbox-webpack-plugin": "^6.5.1"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^3.3.3",
"@types/websocket": "^1.0.5",
"core-js": "^3.21.1",
"golden-layout": "^2.5.0",
"regenerator-runtime": "^0.13.9",
"source-map-loader": "^3.0.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2"
},
"browserslist": [
"defaults",
"Safari > 3",
"Opera > 8",
"Android > 3"
]
}