-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.72 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
{
"name": "typed-asteroids",
"version": "1.0.0",
"private": true,
"description": "An asteroids clone showcasing typed-ecstasy and typed-signals",
"homepage": "https://github.com/Lusito/typed-asteroids",
"bugs": {
"url": "https://github.com/Lusito/typed-asteroids/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Lusito/typed-asteroids.git"
},
"license": "Zlib",
"author": "Santo Pfingsten",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc && parcel build src/index.html --public-url . --no-source-maps",
"lint": "npm run lint:style && npm run lint:es && npm run lint:package",
"lint:es": "eslint \"{src,test}/**/*.{ts,tsx}\" --ext \".ts,.tsx\" --ignore-path .prettierignore",
"lint:es:fix": "npm run lint:es -- --fix",
"lint:fix": "npm run lint:style:fix && npm run lint:es:fix && npm run lint:package:fix",
"lint:package": "sort-package-json --check",
"lint:package:fix": "sort-package-json",
"lint:style": "npm run lint:style:base -- --check",
"lint:style:base": "prettier \"{src,test}/**/*.{ts,tsx,js,json}\" \"./*.{ts,tsx,js,json}\"",
"lint:style:fix": "npm run lint:style:base -- --write",
"start": "parcel src/index.html"
},
"dependencies": {
"@abraham/reflection": "^0.10.0",
"pixi-sound": "^3.0.5",
"pixi.js": "^5.3.12",
"ts-keycode-enum": "^1.0.6",
"typed-ecstasy": "^2.2.0",
"typed-signals": "^2.5.0",
"typedi": "^0.10.0"
},
"devDependencies": {
"@lusito/eslint-config": "^2.0.0",
"@lusito/prettier-config": "^2.0.0",
"parcel-bundler": "^1.12.5",
"parcel-plugin-static-files-copy": "^2.6.0",
"rimraf": "^3.0.2",
"sort-package-json": "^1.57.0",
"typescript": "^4.7.2"
}
}