-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.19 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": "js13kgames",
"version": "1.0.0",
"author": "Christian Hughes <[email protected]>",
"contributors": [
{
"name": "Samuel Schumacher <[email protected]>"
},
{
"name": "Christian Hughes <[email protected]>"
}
],
"license": "MIT",
"devDependencies": {
"archiver": "^2.1.1",
"autoprefixer": "^9.1.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"css-loader": "^1.0.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"kontra": "^4.0.1",
"mini-css-extract-plugin": "^0.4.2",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0",
"style-loader": "^0.22.1",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack --mode=production",
"postbuild": "node bin/postbuild.js",
"precommit": "pretty-quick --staged"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true
},
"dependencies": {
"text": "^0.1.0"
}
}