-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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": "backwards",
"version": "0.10.0",
"author": "Jeremie CORPINOT",
"description": "A turn based game system built with Phaser",
"license": "MIT",
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "ava",
"test:watch": "ava --watch"
},
"dependencies": {
"pathfinding": "0.4.18",
"phaser": "3.24.1"
},
"devDependencies": {
"@types/pathfinding": "0.0.4",
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "3.6.1",
"ava": "3.10.1",
"eslint": "7.5.0",
"eslint-config-standard-with-typescript": "18.0.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"snowpack": "2.0.0",
"ts-node": "8.10.2",
"typescript": "3.9.7"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
}
}