-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
66 lines (66 loc) · 1.8 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
{
"name": "spaaace",
"version": "4.0.0",
"engines": {
"node": ">11.0.0"
},
"description": "An HTML5 multiplayer space shooter based on Lance",
"main": "src/main.js",
"dependencies": {
"@babel/node": "^7.8.7",
"babel-loader": "^8.1.0",
"breakpoint-sass": "^2.7.1",
"css-loader": "^3.4.2",
"eventemitter3": "^1.2.0",
"express": "^4.17.1",
"file-loader": "^0.9.0",
"howler": "^2.1.3",
"json-loader": "^0.5.4",
"lance-gg": "^4.0.8",
"node-sass": "^8.0.0",
"null-loader": "^0.1.1",
"pixi-particles": "^2.0.0",
"pixi.js": "^4.8.9",
"query-string": "^4.2.3",
"raw-loader": "^0.5.1",
"sass-loader": "^4.1.1",
"socket.io": "^2.5.0",
"style-loader": "^0.13.1",
"url-loader": "^1.1.2",
"webpack": "^5.75.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-plugin-inline-json-import": "^0.3.2",
"eslint": "^8.28.0",
"eslint-config-google": "^0.7.0"
},
"scripts": {
"start": "node dist-server/main.js",
"start-debug": "node --inspect-brk dist-server/main.js",
"start-dev": "nodemon dist-server/main.js",
"postinstall": "webpack && babel src --source-maps --out-dir dist-server",
"build": "webpack && babel src --source-maps --out-dir dist-server",
"stats": "webpack --env production --profile --json > stats.json",
"dev": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lance-gg/spaaace.git"
},
"keywords": [
"game",
"lance",
"lance-gg",
"multiplayer",
"websockets"
],
"author": "Opher Vishnia",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lance-gg/spaaace/issues"
},
"homepage": "https://github.com/lance-gg/spaaace#readme"
}