-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.64 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
69
70
71
72
73
74
75
{
"name": "flappy-wings-ng",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "ng build",
"build:production": "ng build --configuration production",
"ci": "yarn format:check && yarn lint && yarn test",
"copy-assets": "gulp copy-assets",
"predeploy": "yarn build:production --base-href=\"https://sectex.github.io/flappy-wings/\"",
"deploy": "gh-pages -d ./dist/out-tsc/app",
"format:check": "yarn sort-package-json --check && npx prettier --check --config .prettierrc \"**/*.{js,jsx,ts,tsx,html,css,scss}\"",
"format:write": "yarn sort-package-json && npx prettier --write --config .prettierrc \"**/*.{js,jsx,ts,tsx,html,css,scss}\"",
"generate-icons": "gulp generate-icons",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"ng": "ng",
"sort-package-json": "npx sort-package-json",
"start": "ng serve --open",
"test": "ng test",
"watch": "ng build --watch --configuration development"
},
"dependencies": {
"@angular/animations": "^16.1.0",
"@angular/common": "^16.1.0",
"@angular/compiler": "^16.1.0",
"@angular/core": "^16.1.0",
"@angular/forms": "^16.1.0",
"@angular/platform-browser": "^16.1.0",
"@angular/platform-browser-dynamic": "^16.1.0",
"@angular/router": "^16.1.0",
"@angular/service-worker": "^16.1.0",
"@fontsource/press-start-2p": "^5.0.5",
"@fortawesome/fontawesome-free": "^6.4.0",
"@ngxs/storage-plugin": "^3.8.1",
"@ngxs/store": "^3.8.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"jsonc-eslint-parser": "^2.3.0",
"nes.css": "^2.3.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-builders/jest": "^16.0.0",
"@angular-devkit/build-angular": "^16.1.4",
"@angular-eslint/builder": "16.1.0",
"@angular-eslint/eslint-plugin": "^16.1.0",
"@angular-eslint/eslint-plugin-template": "^16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "^16.1.0",
"@angular/cli": "~16.1.4",
"@angular/compiler-cli": "^16.1.0",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"@types/jasmine": "~4.3.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"exif-be-gone": "^1.3.2",
"favicons": "7.1.3",
"gh-pages": "^5.0.0",
"jasmine-core": "~4.6.0",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"sort-package-json": "^2.5.1",
"ts-jest": "^29.1.1",
"typescript": "~5.1.3"
}
}