-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "phaserinit",
"version": "1.0.0",
"description": "startup project to work with phaser",
"main": "index.js",
"scripts": {
"lint": "eslint ./js/*.js",
"localtunnel": "lt --port 3000",
"share": "npm-run-all --parallel dev localtunnel",
"build": "webpack",
"start": "webpack-dev-server --open",
"clean": "rimraf ./dist/*"
},
"keywords": [
"phaser",
"init"
],
"author": "Jorge I. Ramírez <ing.jorgeivanramirezh@gmail.com>",
"license": "MIT",
"devDependencies": {
"eslint": "^4.2.0",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"expose-loader": "^0.7.3",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"localtunnel": "^1.8.3",
"npm-run-all": "^4.0.2",
"script-loader": "^0.7.0",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"npm": "^6.14.6",
"phaser": "^2.6.2"
}
}