-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "pixel-run",
"version": "0.1.0",
"description": "a javascript canvas mini game",
"license": "MIT",
"homepage": "https://github.com/andrezero/pixel-run",
"author": "Andre Torgal <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/andrezero/pixel-run.git"
},
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"start": "webpack --config webpack.prod.js && node ./bin/www",
"lint": "eslint src/ lib/",
"lint-fix": "eslint --fix src/ lib/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.9",
"express": "^4.16.2",
"fontfaceobserver": "^2.0.13",
"html-webpack-plugin": "^2.30.1",
"lodash-es": "^4.17.14",
"style-loader": "^0.20.1",
"webpack": "^3.8.1"
},
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"http-server": "^0.12.3",
"webpack-dev-server": "^3.1.11"
}
}