-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.84 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
{
"name": "ex3",
"version": "0.0.1",
"description": "Real-time 3D engine for TypeScript.",
"main": "ex3.js",
"scripts": {
"debug": "webpack-dev-server --config webpack.dev.js --host 127.0.0.1 --port 3300 --display-modules --content-base dev --inline --hot --mode development --env.ENVIRONMENT=dev",
"build": "webpack --config webpack.release.js --mode production --progress --colors",
"desktop": "yarn run build && webpack --config webpack.desktop.js --mode production --progress --colors && electron ./build/desktop/electron.js",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pluginio/ex3.git"
},
"keywords": [
"3d",
"engine",
"realtime",
"game",
"real-time",
"games",
"graphics",
"webgl",
"typescript",
"opengl"
],
"author": "Gary Paluk",
"license": "ISC",
"bugs": {
"url": "https://github.com/pluginio/ex3/issues"
},
"homepage": "https://github.com/pluginio/ex3/issues#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"coverage": "^0.4.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.4.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-typescript": "^5.5.1",
"prettier": "^1.17.1",
"ts-loader": "^6.0.0",
"typescript": "^4.2.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@types/jest": "^24.0.13",
"@types/webgl2": "0.0.5",
"copy-webpack-plugin": "^5.0.3",
"remove-strict-webpack-plugin": "^0.1.2",
"typescript-collections": "^1.3.2",
"uglify-js": "^3.13.5"
}
}