forked from pongstylin/tactics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.41 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
{
"name": "tactics",
"version": "0.8.14",
"description": "A tactical turn-based board game",
"main": "src/tactics.js",
"type": "module",
"repository": {
"type": "git",
"url": "[email protected]:pongstylin/tactics.git"
},
"scripts": {
"start": "NODE_ENV=development webpack --watch --hide-modules --config webpack.config.cjs & node --es-module-specifier-resolution=node --experimental-modules --experimental-loader ./resolver.mjs --require dotenv/config src/server.js || true",
"start-beta": "NODE_ENV=beta node --experimental-modules --loader ./resolver.mjs --require dotenv/config src/server.js || true",
"build": "NODE_ENV=beta webpack --hide-modules --config webpack.config.cjs",
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "NODE_ENV=production webpack --hide-modules --config webpack.config.cjs",
"clean": "rm -rf src/data/files && git checkout src/data/files",
"script": "node --es-module-specifier-resolution=node --experimental-modules --experimental-loader ./resolver.mjs --require dotenv/config"
},
"author": "Dave Clark",
"license": "Unlicense",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.1.0",
"core-js": "^3.2.1",
"css-loader": "^3.4.2",
"debug": "^4.1.1",
"dotenv": "^7.0.0",
"dotenv-webpack": "^1.7.0",
"node-sass": "^4.13.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@pixi/canvas-display": "^5.2.1",
"@pixi/canvas-graphics": "^5.2.1",
"@pixi/canvas-renderer": "^5.2.1",
"@pixi/canvas-sprite": "^5.2.1",
"@pixi/canvas-text": "^5.2.1",
"@pixi/display": "^5.2.1",
"@pixi/filter-blur": "^5.2.1",
"@pixi/filter-color-matrix": "^5.2.1",
"@pixi/graphics": "^5.2.1",
"@pixi/interaction": "^5.2.1",
"@pixi/loaders": "^5.2.1",
"@pixi/math": "^5.2.1",
"@pixi/sprite": "^5.2.1",
"@pixi/text": "^5.2.1",
"ajv": "^6.10.0",
"bufferutil": "^4.0.1",
"express": "^4.16.4",
"howler": "^2.1.3",
"impetus": "^0.8.8",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"socket.io-client": "^2.2.0",
"string-pixel-width": "^1.9.0",
"touch-pinch": "^1.0.1",
"ua-parser-js": "^0.7.20",
"utf-8-validate": "^5.0.2",
"uuid": "^3.3.2",
"web-push": "^3.3.5",
"ws": "^6.2.1",
"xregexp": "^4.2.4"
}
}