-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.94 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
{
"author": "tpftg",
"name": "dice.io",
"version": "0.6.4",
"description": "A simple dice roller server.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/tpftg/dice.io.git"
},
"homepage": "https://github.com/tpftg/dice.io",
"keywords": [
"dice",
"roller",
"rpg",
"server"
],
"bin": {
"diceio": "./bin/index.js"
},
"engines": {
"node": ">=12.0"
},
"main": "./src/server.js",
"scripts": {
"dev:client": "webpack --progress --watch --mode production --config webpack.config.client.js",
"dev:demo": "webpack --progress --watch --mode production --config webpack.config.demo.js",
"dev:miro": "webpack --progress --watch --mode production --config webpack.config.miro.js",
"dist": "npm run lint && webpack --progress --mode production --config webpack.config.client.js --config webpack.config.demo.js --config webpack.config.miro.js",
"lint": "eslint webpack.*.js src/**/*.js && stylelint src/**/*.css",
"start": "./bin/index.js"
},
"dependencies": {
"@dice-roller/rpg-dice-roller": "^5.5.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"cors": "^2.8.5",
"dice.js": "^2.0.0",
"express": "^4.19.2",
"rpgdicejs": "^2.0.3",
"serve-static": "^1.15.0",
"socket.io": "^4.7.5"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.6.0",
"globals": "^15.6.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"socket.io-client": "^4.7.5",
"stylelint": "^16.6.1",
"stylelint-config-recommended": "^14.0.1",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}