-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.62 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
{
"name": "js13kgame",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --env=dev --progress --colors",
"zip": "rimraf \"dist/zip\" && webpack --env=production --profile --colors --hide-modules --watch",
"build": "webpack --env=production --profile --colors --hide-modules",
"closure": "webpack --env=closure --profile --colors --hide-modules --watch",
"dev": "concurrently -t \"HH:mm:ss\" -p \"[{name} {time}]\" -n \"dev,zip\" -c \"bgGreen.bold,bgBlue.bold\" \"npm start\" \"npm run zip\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakubsikora/js13kGame.git"
},
"author": "Jakub Sikora",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakubsikora/js13kGame/issues"
},
"homepage": "https://github.com/jakubsikora/js13kGame#readme",
"dependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"concurrently": "^3.5.0",
"css-loader": "^0.28.5",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"raf": "^3.3.2",
"rimraf": "^2.6.1",
"source-map-explorer": "^1.4.0",
"style-loader": "^0.18.2",
"webpack": "^3.5.4",
"webpack-closure-compiler": "^2.1.5",
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.0",
"zip-webpack-plugin": "^2.0.0"
}
}