-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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": "project-tower",
"version": "0.0.1",
"description": "Project Tower",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/DmitryScaletta/project-tower.git"
},
"author": {
"name": "DmitryScaletta",
"email": "[email protected]",
"url": "https://github.com/DmitryScaletta"
},
"license": "MIT",
"homepage": "https://dmitryscaletta.github.io/project-tower/",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"gh-pages": "^1.2.0",
"raw-loader": "^0.5.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6",
"webpack-dev-server": "^3.1.4"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot --inline",
"build": "cross-env NODE_ENV=production webpack",
"deploy": "cross-env NODE_ENV=production webpack && gh-pages -d public"
},
"dependencies": {
"phaser": "^3.10.1",
"webfontloader": "^1.6.28"
}
}