-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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
{
"name": "ballcatraz",
"version": "1.0.0",
"description": "Brakeout clone",
"main": "index.js",
"scripts": {
"clean": "rimraf .\\build --",
"webpack": "webpack --display-error-details --progress --color --display-chunks --display-entrypoints --profile",
"webpack-dev": "npm run webpack -- --config .\\config\\webpack.config.js --mode development",
"webpack-prod": "npm run webpack -- --config .\\config\\webpack.config.js --mode production",
"webpack-dev-watch": "npm run webpack-dev -- --watch",
"build-prod": "npm run clean && npm run webpack-dev --",
"build-dev": "npm run clean && npm run webpack-dev --",
"build-dev-watch": "npm run clean && npm run webpack-dev-server --",
"serve": "npm run clean && webpack-dev-server --config .\\config\\webpack.config.js --mode development --serve --",
"build": "npm run build-prod --",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bytehog/ballcatraz.git"
},
"keywords": [
"breakeout",
"classics",
"arcade",
"game",
"phaser"
],
"author": "BYTEHOG.pl",
"license": "MIT",
"bugs": {
"url": "https://github.com/bytehog/ballcatraz/issues"
},
"homepage": "https://github.com/bytehog/ballcatraz#readme",
"devDependencies": {
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"expose-loader": "^0.7.5",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"phaser-ce": "^2.11.1",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-loader": "^3.5.4",
"typescript": "^3.2.4",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"typescript-tslint-plugin": "^0.3.1"
}
}