forked from deniszholob/factorio-cheat-sheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.29 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
{
"name": "factorio-cheat-sheet",
"version": "0.0.0",
"license": "GPL-3",
"author": "Denis Zholob",
"description": "Factorio Cheat Sheet",
"repository": "github:deniszholob/factorio-cheat-sheet",
"private": true,
"engines": {
"node": ">= 18.12.1",
"npm": ">= 8.19.2"
},
"scripts": {
"ng": "ng",
"i": "npm i",
"start": "ng serve --port 9009",
"start:prod": "http-server -p 8080 -c-1 public",
"build": "npm run build:prod",
"build:sh": "sh ./build/build.sh",
"build:dev": "ng --configuration development",
"build:prod": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "echo 'No tests'",
"lint": "ng lint",
"format": "prettier --cache --write --ignore-unknown .",
"format:check": "prettier --cache --check --ignore-unknown .",
"prepare": "husky install",
"pre-commit": "npm run update-devcontainer-extensions && npx lint-staged",
"update-devcontainer-extensions": "node .devcontainer/dev-container-update-extensions.js ",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "ng run factorio-cheat-sheet:storybook --port 6006",
"storybook:docs": "npm run docs:json && npm run storybook",
"build-storybook": "npm run docs:json && storybook build"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"**/*": [
"prettier --cache --write --ignore-unknown"
]
},
"dependencies": {
"@angular/animations": "15.0.0",
"@angular/cdk": "15.0.0",
"@angular/common": "15.0.0",
"@angular/compiler": "15.0.0",
"@angular/core": "15.0.0",
"@angular/forms": "15.0.0",
"@angular/platform-browser": "15.0.0",
"@angular/platform-browser-dynamic": "15.0.0",
"@angular/router": "15.0.0",
"@angular/service-worker": "15.0.0",
"@ng-bootstrap/ng-bootstrap": "14.0.0",
"@popperjs/core": "2.11.6",
"bootstrap": "5.2.3",
"core-js": "3.26.1",
"rxjs": "7.5.0",
"tslib": "2.3.0",
"zone.js": "0.12.0"
},
"devDependencies": {
"@angular-builders/jest": "14.1.0",
"@angular-devkit/build-angular": "15.0.4",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "15.1.0",
"@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/schematics": "15.1.0",
"@angular-eslint/template-parser": "15.1.0",
"@angular/cli": "15.0.4",
"@angular/compiler-cli": "15.0.0",
"@angular/localize": "15.0.0",
"@compodoc/compodoc": "1.1.19",
"@storybook/addon-essentials": "7.0.0-beta.12",
"@storybook/addon-interactions": "7.0.0-beta.12",
"@storybook/addon-links": "7.0.0-beta.12",
"@storybook/angular": "7.0.0-beta.12",
"@storybook/blocks": "7.0.0-beta.12",
"@storybook/testing-library": "0.0.14-next.1",
"@types/jest": "29.2.4",
"@types/node": "18.11.15",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-storybook": "0.6.8",
"http-server": "14.1.1",
"husky": "8.0.2",
"lint-staged": "13.1.0",
"prettier": "2.8.1",
"prettier-plugin-organize-attributes": "0.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"storybook": "7.0.0-beta.12",
"typescript": "4.8.2"
}
}