-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "webgl-benchmark",
"version": "1.5.0",
"description": "Benchmark WebGL performance using different JavaScript rendering/game engines, such as Pixi and Phaser.",
"keywords": [
"WebGL",
"Pixi",
"Pixijs",
"Phaser",
"Benchmark"
],
"author": "Dave Moore",
"license": "MIT",
"private": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.prod.js --progress --profile",
"dev": "webpack --config webpack.dev.js --progress --profile",
"start": "webpack-dev-server --config webpack.dev.js --progress --profile"
},
"main": "src/js/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/themoonrat/webgl-benchmark.git"
},
"bugs": {
"url": "https://github.com/themoonrat/webgl-benchmark/issues"
},
"homepage": "https://github.com/themoonrat/webgl-benchmark#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.5.1",
"eslint": "^8.5.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.5",
"style-loader": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1",
"webpack-merge": "^5.8.0",
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {
"core-js": "^3.20.1",
"dat.gui": "^0.7.7",
"keyboardevent-key-polyfill": "^1.1.0",
"normalize.css": "^8.0.1",
"regenerator-runtime": "^0.13.9",
"url-search-params-polyfill": "^8.1.1"
}
}