-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "fortify",
"version": "0.5.1",
"description": "A puzzle game where your objective is to defend teddy.",
"contributors": [
"Ben Budnevich <ben.bj32001@gmail.com>",
"Dan Phillips <danmakenoise@gmail.com>",
"Mark <mark@remarkablemark.org>"
],
"scripts": {
"build": "node scripts/build",
"clean": "rm -rf build",
"deploy": "npm run clean && npm run build && gitploy build gh-pages",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"release": "standard-version --no-verify",
"start": "node scripts/start"
},
"homepage": "https://remarkablegames.org/fortify/",
"repository": {
"type": "git",
"url": "https://github.com/remarkablegames/fortify"
},
"bugs": {
"url": "https://github.com/remarkablegames/fortify/issues"
},
"devDependencies": {
"@commitlint/cli": "7.3.2",
"@commitlint/config-conventional": "7.3.1",
"autoprefixer": "9.4.6",
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-loader": "7.1.5",
"babel-preset-env": "1.7.0",
"babel-preset-stage-2": "6.24.1",
"babel-runtime": "6.26.0",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"chalk": "2.4.2",
"css-loader": "0.28.11",
"dotenv": "6.2.0",
"eslint": "5.12.1",
"eslint-loader": "2.1.1",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.15.0",
"eslint-plugin-prettier": "3.0.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "2.0.0",
"fs-extra": "7.0.1",
"gitploy": "0.1.0",
"html-webpack-plugin": "3.2.0",
"husky": "1.3.1",
"lint-staged": "8.1.0",
"phaser": "3.15.1",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"prettier": "1.16.1",
"react-dev-utils": "11.0.4",
"standard-version": "4.4.0",
"style-loader": "0.23.1",
"sw-precache-webpack-plugin": "0.11.5",
"url-loader": "1.1.2",
"webpack": "3.8.1",
"webpack-dev-server": "3.1.11",
"webpack-manifest-plugin": "2.0.4"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"private": true,
"license": "MIT"
}