forked from Jimbly/jsjam22
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.46 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.46 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
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
88
{
"name": "jsjam22",
"version": "0.1.0",
"description": "Template for a JavaScript game project using GLOV.js",
"main": "server/index.js",
"keywords": [
"template",
"glov",
"glovjs",
"glov-build",
"browserify",
"babel"
],
"repository": {
"type": "git",
"url": "git@github.com:Jimbly/jsjam22.git"
},
"scripts": {
"start": "nodemon -w build -w ../glov-build/ -- build default --watch",
"clean": "node build clean",
"build": "node build build",
"prod": "node build build && node dist/game/build.prod/server/index.js --master",
"lint": "node build lint"
},
"author": "Jimb Esser (https://github.com/Jimbly)",
"contributors": [
"Jimb Esser (https://github.com/Jimbly)"
],
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"express-static-gzip": "^2.0.5",
"fs-store": "^0.3.2",
"fs-store-async": "^0.3.3",
"gl-mat3": "^2.0.0",
"gl-mat4": "^1.2.0",
"glov-async": "0.0.1",
"glslang-validator-prebuilt-predownloaded": "^0.0.2",
"json5": "^2.1.3",
"minimist": "^1.2.5",
"mkdirp": "^0.5.1",
"request": "^2.88.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.5.2",
"ws": "^7.1.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "7.15.6",
"@babel/preset-typescript": "^7.17.12",
"@jimbly/babel-plugin-transform-modules-simple-commonjs": "0.0.3",
"@jimbly/howler": "0.0.9",
"@types/node": "^16.9.6",
"@types/request": "^2.48.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-plugin-static-fs": "^3.0.0",
"babelify": "^10.0.0",
"browser-sync": "^2.26.7",
"console-api": "0.0.5",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"glov": "file:./src/glov",
"glov-build": "0.0.35",
"glov-build-babel": "0.0.4",
"glov-build-browserify": "0.0.6",
"glov-build-concat": "0.0.9",
"glov-build-preresolve": "0.2.0",
"glov-build-sourcemap": "0.0.5",
"gulp-if": "^3.0.0",
"gulp-ifdef": "^0.2.0",
"gulp-ignore": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-useref": "^3.1.6",
"gulp-zip": "^5.0.2",
"lazypipe": "^1.0.1",
"micromatch": "^4.0.2",
"nodemon": "^1.19.1",
"regexp-sourcemaps": "^1.0.1",
"typescript": "4.4.3",
"uglify-js": "^3.13.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.1"
}
}