-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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": "zzzone",
"version": "0.0.5",
"description": "A fun gravity game",
"private": true,
"main": "./dist/index",
"types": "./dist/index",
"scripts": {
"dev": "tsc --watch & nodemon dist",
"build": "tsc && webpack",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint-fix": "eslint -c .eslintrc.js --fix --ext .ts src",
"doc": "typedoc --out dist/tsdoc src",
"preinstall": "npx npm-force-resolutions"
},
"author": "Jan Engehausen",
"license": "Apache 2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/eslint-plugin-tslint": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"eslint": "8.29.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.6.4",
"eslint-plugin-prefer-arrow": "1.2.3",
"ini": "1.3.6",
"serialize-javascript": "3.1.0",
"typedoc": "0.22.15",
"typescript": "4.0.3",
"webpack": "5.11.0",
"webpack-cli": "4.10.0"
},
"dependencies": {
"@types/node": "12.12.14",
"npm": "8.19.3",
"planck-js": "0.3.5"
},
"resolutions": {
"minimist": "1.2.6",
"yargs-parser": "18.1.2"
}
}