-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.98 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.98 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "weather-maps",
"version": "0.0.1",
"description": "Various opengl mapbox weather maps",
"main": "index.ts",
"author": "Fabian Brosda",
"license": "MIT",
"scripts": {
"build": "npm run-script build:server && npm run-script build:client",
"build:server": "npx tsc -p src/",
"build:server:watch": "npx nodemon --ext 'ts' --watch 'src/**/' --exec 'npm run-script build:server && npm run-script start'",
"build:client": "npx tsc -p resources/script/",
"postbuild:client": "cp -r -t dist/resources/ resources/html resources/css resources/shader resources/img && cp node_modules/tachyons/css/tachyons.css dist/resources/css/",
"build:client:watch": "npx tsc -w -p resources/script/",
"start": "cd ./dist && node src/index.js",
"clean": "rm -rf dist/",
"version": "echo $npm_package_version"
},
"dependencies": {
"install": "^0.13.0",
"lookpath": "^1.2.3",
"npm": "^11.6.4",
"pngjs": "^7.0.0",
"typescript-language-server": "^4.3.4"
},
"devDependencies": {
"@types/node": "^18.19.116",
"@types/pngjs": "^6.0.5",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"maplibre-gl": "^5.6.1",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"tachyons": "^4.12.0",
"typescript": "^5.8.3"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2019
},
"env": {
"node": true,
"es6": true
},
"rules": {
"@typescript-eslint/no-use-before-define": [
"error",
{
"functions": false
}
]
}
}
}