forked from wisnia74/openrct2-typescript-mod-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 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
{
"name": "openrct2-typescript-mod-template",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"watch": "nodemon --watch ./src --ext js,ts",
"build": "npm run lint && rollup --config rollup.config.prod.js",
"build:dev": "rollup --config rollup.config.dev.js",
"lint": "eslint ./src --ext .js --ext .ts",
"init": "node init.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wisnia74/openrct2-typescript-mod-template.git"
},
"author": "wisnia74",
"license": "MIT",
"bugs": {
"url": "https://github.com/wisnia74/openrct2-typescript-mod-template/issues"
},
"homepage": "https://github.com/wisnia74/openrct2-typescript-mod-template#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.6",
"rollup": "^2.33.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"dependencies": {}
}