forked from mattbruv/Lentokonepeli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.59 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
{
"name": "lentokonepeli",
"version": "1.0.0",
"description": "A modern remake of Lentokonepeli/Dogfight",
"main": "index.js",
"engines": {
"node": "14.x"
},
"scripts": {
"watch": "watch 'npm run build' ./client ./dogfight",
"test": "jest",
"lint": "eslint **/*.ts",
"collision": "parcel client/collision/index.html",
"build-solo": "env BUILD=client parcel build client/public/index.html client/public/images/* --public-url replacthislinewithadot",
"build": "parcel build client/public/index.html --public-url ./",
"build-no-server": "env BUILD=client parcel build client/public/index.html --public-url ./",
"server": "ts-node server/mainserver.ts",
"no-server": "env BUILD=client parcel client/public/index.html",
"watch-client": "parcel watch client/public/index.html",
"clean": "rm -rf .cache && rm -rf dist",
"assets": "cp -r ./client/public/assets ./dist/assets",
"setup": "npm run clean && mkdir dist && npm run assets",
"heroku-postbuild": "npm run setup && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattbruv/Lentokonepeli.git"
},
"keywords": [
"lentokonepeli",
"dogfight",
"remake",
"aapeli",
"playray",
"playforia"
],
"author": "Matt P.",
"license": "ISC",
"bugs": {
"url": "https://github.com/mattbruv/Lentokonepeli/issues"
},
"homepage": "https://github.com/mattbruv/Lentokonepeli#readme",
"dependencies": {
"reinforce-js": "^1.5.1",
"@types/express": "^4.17.2",
"@types/howler": "^2.1.2",
"@types/js-cookie": "^2.2.5",
"@types/ws": "^7.2.2",
"@vue/component-compiler-utils": "^3.1.1",
"canvas": "",
"detect-node": "",
"express": "^4.17.1",
"gl": "^5.0.3",
"gm": "",
"howler": "^2.1.3",
"jimp": "0.16.1",
"js-cookie": "^2.2.1",
"node-addon-api": "^3.0.2",
"node-gles": "0.0.17",
"nodemon": "^2.0.7",
"parcel": "1.12.3",
"pixi.js": "^5.0.4",
"prettier": "^1.18.2",
"rect": "^1.2.1",
"sass": "^1.22.5",
"sharp": "",
"ts-node": "^9.1.1",
"typescript": "^3.8.3",
"vue": "^2.6.11",
"vue-hot-reload-api": "^2.3.4",
"vue-template-compiler": "^2.6.11",
"vuex": "^3.1.3",
"ws": "^7.2.1"
},
"devDependencies": {
"@parcel/transformer-vue": "^2.0.0-beta.2",
"@types/jest": "^24.0.16",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"jest": "^24.8.0",
"watch": "",
"ts-jest": "^26.4.4"
}
}