-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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": "one-page-dungeon-generator",
"version": "1.0.0",
"description": "",
"main": "src/pages/index.html",
"scripts": {
"start": "parcel src/pages/index.html",
"test": "jest",
"lint": "eslint --ext .js,.ts src/",
"bundle": "parcel build src/pages/index.html --out-dir docs --public-url ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BartoszSadowski/DungeonGenerator.git"
},
"author": "Bartosz Sadowski",
"bugs": {
"url": "https://github.com/BartoszSadowski/DungeonGenerator/issues"
},
"homepage": "https://github.com/BartoszSadowski/DungeonGenerator#readme",
"dependencies": {
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"regenerator-runtime": "^0.13.7",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"fs-extra": "^9.0.1",
"jest": "^26.5.3",
"jest-canvas-mock": "^2.3.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.4.1"
}
}