-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "dungeon",
"version": "1.0.0",
"description": "Game created with Canvas and Typescript",
"repository": {
"type": "git",
"url": "git+https://github.com/amargopastor/dungeon.git"
},
"keywords": [
"Dungeon",
"Canvas",
"Typescript"
],
"author": "Marcos Iñigo Corral",
"license": "MIT",
"scripts": {
"lint": "eslint src/**/*.ts",
"dev": "parcel index.html",
"start": "parcel serve -p $PORT index.html",
"build": "npm run clean && npm run ghbuild",
"ghbuild": "parcel build --dist-dir docs --public-url /dungeon index.html",
"clean": "rimraf docs dist"
},
"bugs": {
"url": "https://github.com/amargopastor/dungeon/issues"
},
"homepage": "https://github.com/amargopastor/dungeon#readme",
"dependencies": {
"@types/lodash": "^4.14.178",
"lodash": "^4.17.21",
"parcel": "^2.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3"
}
}