-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.31 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
{
"name": "super-mario",
"version": "1.0.0",
"description": "Super Mario Game",
"main": "public/js/main.js",
"scripts": {
"test": "jest",
"build:browser": "rollup --config",
"build:watch": "webpack --watch",
"build:electron": "webpack --env.electron",
"electron": "npm run build:electron && electron ./electron-main.js",
"serve": "serve ./public",
"start": "concurrently -p \"[{name}]\" -n \"JS,HTTP\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run build:watch\" \"npm run serve\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rstar2/js_super-mario.git"
},
"author": "Rumen Neshev",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^3.5.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"electron": "^1.8.4",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-include-assets-plugin": "^1.0.4",
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
"rollup": "^1.32.0",
"style-loader": "^0.19.1",
"webpack": "^3.11.0"
}
}