-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2.89 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"devDependencies": {
"@babylonjs/core": "^7.40.3",
"@babylonjs/gui": "^7.40.3",
"@babylonjs/havok": "^1.3.10",
"@babylonjs/inspector": "^7.40.3",
"@babylonjs/loaders": "^7.40.3",
"@brianchirls/game-input": "^0.1.1",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@tauri-apps/cli": "2.1.0",
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.14",
"@types/seedrandom": "^3.0.8",
"@types/webpack": "^5.28.5",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@webpack-cli/generators": "^3.0.7",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"d3": "^7.9.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"extended-random": "^1.2.2",
"fast-simplex-noise": "^4.0.0",
"globals": "^15.13.0",
"handle-sliderjs": "^1.3.1",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"http-server": "^14.1.1",
"i18next": "^24.1.2",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.4.2",
"raw-loader": "^4.0.2",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"squirrel-noise": "^1.0.0",
"style-loader": "^4.0.0",
"terrain-generation": "^1.8.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-shader-loader": "^2.0.2",
"typedoc": "^0.27.5",
"typedoc-github-theme": "^0.2.0",
"typedoc-plugin-missing-exports": "^3.1.0",
"typescript": "~5.7.2",
"typescript-plugin-css-modules": "^5.1.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0"
},
"version": "1.9.0",
"description": "Cosmos Journeyer is a space exploration game featuring fully explorable planets, across millions of star systems. It is built using Babylon.JS, and a lot of passion.",
"name": "cosmos-journeyer",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"serve": "webpack serve --progress",
"serve:prod": "http-server dist -p 8080",
"format:check": "prettier --config .prettierrc src//**/*.{js,jsx,json,ts} --check",
"format": "prettier --config .prettierrc src//**/*.{js,json,ts} --write",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage",
"build:docs": "typedoc --options typedoc.json",
"serve:docs": "http-server docs -p 8081",
"lint:check": "eslint src/ts --config eslint.config.mjs",
"lint:fix": "eslint src/ts --fix --config eslint.config.mjs"
}
}