-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.85 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": "warteg.andriawan.com",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config server.dev.proxy.js",
"start:no-reload": "ng serve --no-live-reload",
"start:all": "npm run serve:dev & ng serve --proxy-config server.dev.proxy.json",
"start:all:no-reload": "npm run serve:dev & ng serve --proxy-config server.dev.proxy.js --no-live-reload",
"build": "ng build",
"watch": "ng build --watch --configuration production",
"test": "ng test",
"headless-test": "ng test --watch=false --browsers=ChromeHeadlessCustom",
"serve:ssr": "node dist/warteg.andriawan.com/server/server.mjs",
"serve:dev": "NODE_OPTIONS='--no-warnings --loader ts-node/esm' nodemon --exec npx ts-node server.dev.ts",
"prepare": "husky",
"lint": "ng lint --fix",
"knex": "npx knex --cwd ./server/database",
"knex:createdb": "cd ./server/database && npx ts-node create_db"
},
"private": true,
"dependencies": {
"@angular/animations": "17.2.1",
"@angular/cdk": "17.2.0",
"@angular/common": "17.2.1",
"@angular/compiler": "17.2.1",
"@angular/core": "17.2.1",
"@angular/flex-layout": "15.0.0-beta.42",
"@angular/forms": "17.2.1",
"@angular/material": "17.2.0",
"@angular/platform-browser": "17.2.1",
"@angular/platform-browser-dynamic": "17.2.1",
"@angular/platform-server": "17.2.1",
"@angular/router": "17.2.1",
"@angular/ssr": "17.2.0",
"@ngx-pwa/local-storage": "17.0.0",
"cookie-parser": "^1.4.6",
"express": "4.18.2",
"knex": "^3.1.0",
"pg": "^8.11.5",
"qrcode": "^1.5.3",
"rxjs": "7.8.0",
"tslib": "2.3.0",
"yup": "^1.4.0",
"zone.js": "0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.2.0",
"@angular-eslint/builder": "17.2.1",
"@angular-eslint/eslint-plugin": "17.2.1",
"@angular-eslint/eslint-plugin-template": "17.2.1",
"@angular-eslint/schematics": "17.2.1",
"@angular-eslint/template-parser": "17.2.1",
"@angular/cli": "17.2.0",
"@angular/compiler-cli": "17.2.1",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"@types/cookie-parser": "^1.4.7",
"@types/express": "4.17.17",
"@types/jasmine": "5.1.0",
"@types/node": "18.18.0",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.0.11",
"jasmine-core": "5.1.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",
"nodemon": "^3.1.0",
"prettier": "3.2.5",
"prettier-eslint": "16.3.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "5.3.2"
}
}