-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
47
48
49
50
51
52
53
54
55
{
"name": "game-demo",
"description": "Demo of sprite-ts library",
"scripts": {
"watch": "parcel watch src/index.html",
"build": "parcel build src/index.html",
"serve": "parcel src/index.html",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"author": "Anthony Gabriele <[email protected]> (https://github.com/anthonyjoeseph)",
"license": "MIT",
"devDependencies": {
"@types/geometric": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"spritesheet-js": "^1.2.6",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3"
},
"dependencies": {
"@juggle/resize-observer": "^3.2.0",
"fetch-img": "^0.1.0",
"fp-ts": "^2.9.1",
"fp-ts-contrib": "^0.1.21",
"fp-ts-rxjs": "^0.6.13",
"fp-ts-std": "^0.7.0",
"game-ts": "^0.7.7",
"geometric": "^2.2.5",
"graphics-ts": "^1.1.0",
"io-ts": "^2.2.13",
"io-ts-types": "^0.5.12",
"monocle-ts": "^2.3.3",
"rxjs": "^7.0.0-beta.9",
"src": "^1.1.2",
"ts-key-enum": "^2.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}