-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "kadigan",
"version": "1.0.0",
"description": "",
"author": "",
"license": "MIT",
"scripts": {
"start": "parcel src/*.html --port 1234 --hmr-port 12345 --out-dir dist_debug",
"build": "parcel build src/*.html --public-url ./",
"tsc": "tsc --noEmit",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"check": "npm run tsc && npm run test && npm run lint"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"jest-canvas-mock"
]
},
"staticFiles": {
"staticPath": [
{
"staticPath": "assets",
"staticOutDir": "assets"
}
],
"watcherGlob": "**",
"excludeGlob": "**/*.md"
},
"dependencies": {
"phaser": "^3.24.1"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"jest": "^26.6.2",
"jest-canvas-mock": "^2.3.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.0",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
}
}