forked from factoriolab/factoriolab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.96 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "factoriolab",
"description": "Angular-based calculator for the game Factorio",
"version": "0.0.0",
"private": true,
"contributors": [
"Doug Broad (https://github.com/dcbroad3)"
],
"repository": {
"type": "git",
"url": "https://github.com/factoriolab/factoriolab.git"
},
"homepage": "https://factoriolab.github.io",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-stats": "ng build --stats-json",
"test": "ng test",
"test-build": "ng test --no-watch --progress=false --browsers=ChromeHeadless",
"analyze": "webpack-bundle-analyzer dist/stats.json",
"lint": "ng lint",
"lint-build": "ng lint --max-warnings 0",
"stylelint": "stylelint **/*.{css,scss}",
"prettier": "prettier --check .",
"ngsw-config": "ngsw-config ./dist/browser ./ngsw-config.json",
"factorio-api": "ts-node -r tsconfig-paths/register scripts/factorio-api.ts",
"postfactorio-api": "prettier --write \"scripts/factorio.models.ts\"",
"factorio-prep": "ts-node -r tsconfig-paths/register scripts/factorio-prep.ts",
"factorio-dump": "scripts\\factorio-dump.bat",
"factorio-dump:mac": "scripts/factorio-dump.sh",
"factorio-build": "ts-node -r tsconfig-paths/register scripts/factorio-build.ts",
"factorio-update": "ts-node -r tsconfig-paths/register scripts/factorio-update.ts",
"calculate-color": "ts-node -r tsconfig-paths/register scripts/calculate-color.ts",
"minify-data": "ts-node -r tsconfig-paths/register scripts/minify-data.ts",
"update-hash": "ts-node -r tsconfig-paths/register scripts/update-hash.ts",
"generate-hash": "ts-node -r tsconfig-paths/register scripts/generate-hash.ts"
},
"dependencies": {
"@angular/animations": "^18.1.0",
"@angular/cdk": "^18.1.0",
"@angular/common": "^18.1.0",
"@angular/compiler": "^18.1.0",
"@angular/core": "^18.1.0",
"@angular/forms": "^18.1.0",
"@angular/platform-browser": "^18.1.0",
"@angular/platform-browser-dynamic": "^18.1.0",
"@angular/router": "^18.1.0",
"@angular/service-worker": "^18.1.0",
"@fortawesome/fontawesome-free": "^6.5.1",
"@sideway/formula": "^3.0.1",
"bootstrap": "^5.3.1",
"cytoscape": "^3.30.1",
"cytoscape-elk": "^2.2.0",
"d3": "^7.8.5",
"file-saver": "^2.0.5",
"glpk-ts": "^0.0.11",
"primeicons": "^7.0.0",
"primeng": "^17.18.4",
"rxjs": "~7.8.0",
"tslib": "^2.6.2",
"web-worker": "^1.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1801.0",
"@angular-devkit/build-angular": "~18.1.0",
"@angular/cli": "^18.1.0",
"@angular/compiler-cli": "^18.1.0",
"@angular/language-service": "^18.1.0",
"@semantic-release/exec": "^6.0.3",
"@types/cytoscape": "^3.21.5",
"@types/d3": "^7.4.3",
"@types/file-saver": "^2.0.5",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.14.6",
"@types/sharp": "0.31.1",
"@types/spritesmith": "^3.4.1",
"angular-eslint": "18.3.0",
"eslint": "^9.9.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fast-average-color-node": "^2.6.0",
"handlebars": "^4.7.8",
"jasmine-core": "~5.3.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-junit-reporter": "^2.0.1",
"prettier": "^3.2.4",
"semantic-release": "^23.0.7",
"semantic-release-discord-bot": "^1.1.0",
"sharp": "0.31.3",
"spritesmith": "^3.4.1",
"stylelint": "^16.8.1",
"stylelint-config-concentric-order": "^5.2.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.5.3",
"typescript-eslint": "8.1.0"
},
"browser": {
"crypto": false,
"fs": false,
"path": false
}
}