forked from xdy/xdy-pf2e-workbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.53 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"private": true,
"name": "xdy-pf2e-workbench",
"version": "4.10.3",
"description": "Random assortment of possibly useful doodads, thingumabobs and whatchamacallits for the foundry vtt pf2e system.",
"license": "./LICENSE",
"homepage": "https://github.com/xdy/xdy-pf2e-workbench",
"repository": {
"type": "git",
"url": "https://github.com/xdy/xdy-pf2e-workbench.git"
},
"bugs": {
"url": "https://github.com/xdy/xdy-pf2e-workbench/issues"
},
"contributors": [
{
"name": "Jonas Karlsson",
"email": "[email protected]"
}
],
"scripts": {
"build": "npm run build:packs && webpack --mode production",
"build:dev": "npm run && webpack",
"build:packs": "ts-node -r tsconfig-paths/register src/build-packs.ts",
"start": "npm run build:packs && webpack serve --hot",
"clean": "rm -rf dist/*",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"docs": "typedoc"
},
"devDependencies": {
"@pixi/graphics-smooth": "^0.0.30",
"@pixi/particle-emitter": "5.0.7",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/copy-webpack-plugin": "^10.1.0",
"@types/css-minimizer-webpack-plugin": "^3.2.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^8.0.0",
"@types/jquery": "^3.5.14",
"@types/luxon": "^3.0.2",
"@types/mini-css-extract-plugin": "^2.5.1",
"@types/node": "^18.11.8",
"@types/sortablejs": "^1.15.0",
"@types/tooltipster": "^0.0.31",
"@types/webpack-env": "^1.18.0",
"@types/yaireo__tagify": "^4.16.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"foundry-types": "file:types/types/foundry",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"handlebars": "4.7.7",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"null-loader": "^4.0.1",
"pixi-particles": "^4.3.1",
"pixi.js": "^6.5.8",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"semantic-release": "^19.0.5",
"simple-progress-webpack-plugin": "^2.0.0",
"socket.io": "^4.5.3",
"socket.io-client": "^4.5.3",
"string-replace-loader": "^3.1.0",
"terser-webpack-plugin": "^5.3.6",
"thread-loader": "^3.0.4",
"tinymce": "^6.2.0",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-import-glob-loader": "^1.6.3",
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@yaireo/tagify": "^4.16.4",
"codemirror": "^6.0.1",
"jquery": "^3.6.1",
"ky": "^0.31.4",
"ky-universal": "^0.11.0",
"luxon": "^3.1.0",
"minisearch": "^5.0.0",
"nouislider": "^15.6.1",
"sortablejs": "^1.15.0"
},
"lint-staged": {
"*.(ts)": "eslint --fix",
"*.(json|scss)": "prettier --write"
}
}