-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.9 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
{
"name": "cavez.io",
"type": "module",
"version": "1.0.0",
"description": "Multiplayer browser cave flying game",
"exports": "./server.js",
"scripts": {
"lint": "eslint -c .eslintrc.cjs --ext .ts src",
"build": "webpack --config dist/webpack.prod.js",
"develop": "tsc && cross-env NODE_ENV=development nodemon dist/src/server/server.js",
"start": "cross-env NODE_ENV=production node dist/src/server/server.js",
"tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JLouhela/cavez.io.git"
},
"author": "Joni Louhela",
"license": "MIT",
"bugs": {
"url": "https://github.com/JLouhela/cavez.io/issues"
},
"homepage": "https://github.com/JLouhela/cavez.io#readme",
"dependencies": {
"@geckos.io/client": "^2.2.0",
"@geckos.io/server": "^2.2.0",
"@types/pngjs": "^6.0.1",
"dotenv": "^16.0.1",
"ecsy": "^0.4.2",
"eslint-plugin-react": "^7.29.4",
"express": "^4.17.3",
"keycode-js": "^3.1.0",
"node-fetch": "^2.6.1",
"pixi.js": "^6.3.0",
"pngjs": "^6.0.0",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/html-webpack-plugin": "^3.2.6",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.14.0",
"eslint-plugin-jsdoc": "^39.2.8",
"eslint-plugin-prefer-arrow": "^1.2.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"nodemon": "^2.0.15",
"prettier": "2.6.2",
"resolve-typescript-plugin": "^1.2.0",
"ts-loader": "^9.2.8",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.0-dev.20220428",
"webpack-dev-middleware": "^5.3.1",
"webpack-merge": "^5.8.0"
}
}