-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.34 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.34 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
{
"name": "tsclient",
"version": "1.0.0",
"description": "",
"main": "index.js",
"source": "src/index.ts",
"scripts": {
"start:local": "webpack-dev-server --mode development",
"start:prod": "webpack-dev-server --mode production",
"lint": "concurrently -c \"auto\" \"npm run lint:*(!fix)\"",
"lint:ts": "eslint ./src",
"lint:style": "stylelint ./src/**/*.less",
"lint:fix": "concurrently -c \"auto\" \"npm run lint:*(!fix|tsc) -- --fix\"",
"prettier-format": "prettier --ignore-path .gitignore --config .prettierrc.json 'src/**/*.ts' --write",
"fix-format": "npm run prettier-format && npm run lint-and-fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"build": "npm run extract-assets && webpack",
"extract-assets": "ts-node ./src/extractors/index.ts --tibiaPath=./assets",
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.14.0",
"@interactjs/types": "^1.10.27",
"@types/events": "^3.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/pngjs": "^6.0.5",
"@types/sortablejs": "^1.15.9",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"concurrently": "^9.2.1",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-webpack-plugin": "^5.0.2",
"globals": "^17.1.0",
"jest": "^30.2.0",
"less": "^4.5.1",
"less-loader": "^12.3.0",
"nodemon": "^3.1.11",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"prettier": "^3.8.1",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"stylelint": "^17.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-less": "^4.0.1",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"autoprefixer": "^10.4.23",
"buffer": "^6.0.3",
"events": "^3.3.0",
"interactjs": "^1.10.27",
"pngjs": "^7.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"sortablejs": "^1.15.6",
"ts-node": "^10.9.2",
"tsyringe": "^4.10.0"
}
}