-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.5 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
{
"name": "emergent-algorithms",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration production",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"lite-server": "lite-server",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.0.3",
"@angular/cdk": "^12.2.13",
"@angular/common": "^13.0.3",
"@angular/compiler": "^13.0.3",
"@angular/core": "^13.0.3",
"@angular/forms": "^13.0.3",
"@angular/platform-browser": "^13.0.3",
"@angular/platform-browser-dynamic": "^13.0.3",
"@angular/router": "^13.0.3",
"@ngneat/tailwind": "^7.0.3",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/typography": "^0.4.1",
"@types/pixi.js": "^5.0.0",
"json-fn": "^1.1.1",
"ng-gallery": "^5.1.1",
"pixi.js": "^5.3.11",
"rxjs": "~6.5.4",
"screenfull": "^6.0.0",
"tslib": "^1.14.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^13.0.0",
"@angular-devkit/build-angular": "^13.0.4",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "^13.1.1",
"@angular/compiler-cli": "^13.0.3",
"@types/jasmine": "^3.5.14",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^12.20.36",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"angular-cli-ghpages": "^1.0.0",
"autoprefixer": "^10.4.0",
"compression-webpack-plugin": "^9.2.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^6.3.6",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~3.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"lint-staged": "^11.2.6",
"lite-server": "^2.6.1",
"postcss": "^8.4.4",
"prettier": "^2.4.1",
"protractor": "~7.0.0",
"purgecss": "^4.1.3",
"tailwindcss": "^2.2.19",
"ts-node": "~8.3.0",
"typescript": "~4.4.4"
},
"lint-staged": {
"*.{js,ts,component.html}": "eslint --cache --fix",
"*.{js,scss,ts}": "prettier --write"
}
}