-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·48 lines (48 loc) · 1.32 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
{
"name": "SlipnSlice",
"version": "1.0.0",
"private": true,
"engines": {
"node": "6.10.3",
"npm": "5.3.0",
"yarn": "^0.28.4"
},
"description": "",
"author": "leandro cabrera <[email protected]>",
"main": "index.js",
"scripts": {
"dev": "webpack",
"heroku-postbuild": "webpack -p --config ./webpack.production.config.js --progress",
"start": "webpack",
"deploy": "webpack --config webpack.production.config.js",
"test": "eslint ./src/**/**.js"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"browser-sync": "^2.18.13",
"browser-sync-webpack-plugin": "^1.2.0",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"expose-loader": "^0.7.3",
"webpack": "^3.4.1"
},
"dependencies": {
"gsap": "^1.20.2",
"phaser-arcade-slopes": "^0.3.0",
"phaser-camera-offset": "^1.0.1",
"phaser-ce": "^2.8.3",
"phaser-state-transition": "^2.4.3",
"script-loader": "^0.7.0",
"webfontloader": "^1.6.28"
}
}