Skip to content
This repository was archived by the owner on Feb 25, 2020. It is now read-only.

Commit 5148c0d

Browse files
committed
init commit
0 parents  commit 5148c0d

File tree

5 files changed

+63
-0
lines changed

5 files changed

+63
-0
lines changed

.firebaserc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "make-rpg"
4+
}
5+
}

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# VSCode
2+
.vscode
3+
4+
# npm
5+
node_modules
6+
7+
# production
8+
public
9+
10+
# firebase
11+
firebase-debug.log

firebase.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"hosting": {
3+
"public": "public",
4+
"ignore": [
5+
"firebase.json",
6+
"**/.*",
7+
"**/node_modules/**"
8+
]
9+
}
10+
}

package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "make-rpg",
3+
"version": "1.0.0",
4+
"description": "The kit to create new game in HackforPlay",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "exit 0"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/hackforplay/make-rpg.git"
12+
},
13+
"keywords": [
14+
"HackforPlay"
15+
],
16+
"author": "teramotodaiki",
17+
"license": "MIT",
18+
"bugs": {
19+
"url": "https://github.com/hackforplay/make-rpg/issues"
20+
},
21+
"homepage": "https://github.com/hackforplay/make-rpg#readme"
22+
}

src/.jsbeautifyrc

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"html": {
3+
"indent_with_tabs": true
4+
},
5+
"css": {
6+
"indent_with_tabs": true,
7+
"indent_inner_html": true,
8+
"extra_liners": []
9+
},
10+
"js": {
11+
"indent_with_tabs": true,
12+
"end_with_newline": true,
13+
"brace_style": "collapse,preserve-inline"
14+
}
15+
}

0 commit comments

Comments
 (0)