-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.7 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.7 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
76
{
"name": "csv-raffle",
"version": "1.0.26",
"scripts": {
"serve": "ng serve",
"server:bg": "cd dist/raffle && angular-http-server -p 4200 > http.log 2>&1 &",
"start": "node dist/app.js",
"start:watch": "npm run build:server -- -w & nodemon dist/app.js",
"build": "ng build --configuration production",
"build:server": "tsc -p server/tsconfig.json",
"build:pages": "ng build --configuration production --output-path docs --base-href /csv-raffle/",
"cypress:open": "npx cypress open",
"cypress:run": "cypress run --record",
"test": "ng test --browsers=ChromeHeadless --watch=false",
"test:watch": "ng test",
"lint": "ng lint",
"deploy": "npm run build:pages && git add -A && git commit -m \"Deploy version\" && npm version patch && git push origin master",
"build:docker": "docker build -t csv-raffle:v8 .",
"run:docker": "docker run --rm -p 80:3000 --name csv-raffle csv-raffle:v8"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.1",
"@angular/common": "^15.2.1",
"@angular/compiler": "^15.2.1",
"@angular/core": "^15.2.1",
"@angular/forms": "^15.2.1",
"@angular/platform-browser": "^15.2.1",
"@angular/platform-browser-dynamic": "^15.2.1",
"@angular/router": "^15.2.1",
"express": "^4.21.1",
"morgan": "^1.10.0",
"rxjs": "~6.6.7",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.1",
"@angular-eslint/builder": "^15.2.1",
"@angular-eslint/eslint-plugin": "^15.2.1",
"@angular-eslint/eslint-plugin-template": "^15.2.1",
"@angular-eslint/schematics": "^15.2.1",
"@angular-eslint/template-parser": "^15.2.1",
"@angular/cli": "^15.2.1",
"@angular/compiler-cli": "^15.2.1",
"@angular/language-service": "^15.2.1",
"@percy/cli": "^1.27.1",
"@percy/cypress": "^3.1.2",
"@types/express": "^4.17.15",
"@types/jasmine": "~3.10.2",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"angular-http-server": "^1.11.1",
"cypress": "^12.7.0",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.28.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "40.0.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "~3.10.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"nodemon": "^2.0.20",
"ts-node": "~10.9.2",
"typescript": "~4.9.5"
},
"engines": {
"npm": ">=9.5.0"
}
}