-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.61 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
{
"name": "breakout",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "ISC",
"homepage": "https://pigmin.github.io/Breakout/",
"dependencies": {
"@babylonjs/core": "^6.35.0",
"@babylonjs/gui": "^6.35.0",
"@babylonjs/havok": "^1.3.0",
"@babylonjs/inspector": "^6.35.0",
"@babylonjs/loaders": "^6.35.0",
"@babylonjs/materials": "^6.35.0",
"@babylonjs/post-processes": "^6.35.0",
"@babylonjs/procedural-textures": "^6.35.0",
"@babylonjs/serializers": "^6.35.0",
"clean-webpack-plugin": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-package-json": "^0.2.0",
"eslint-plugin-promise": "^6.1.1",
"file-loader": "^6.2.0",
"gh-pages": "^6.1.1",
"html-webpack-plugin": "^5.6.0",
"js-loader": "^0.1.1",
"source-map-loader": "^4.0.1",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"sideEffects": true,
"repository": {
"type": "git",
"url": "https://github.com/pigmin/Breakout.git"
},
"scripts": {
"start": "npx webpack serve --config webpack.dev.js",
"start:test": "npx webpack serve --config webpack.tests.js",
"start:prod": "webpack serve --config webpack.prod.js",
"build:dev": "npx webpack --config webpack.dev.js",
"build": "npx webpack --config webpack.prod.js",
"lint": "npx eslint . --ext .js",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
}
}