-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
84 lines (84 loc) · 3.05 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
{
"name": "ng-slacker-to-spotify",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"test": "ng test",
"prestart": "npm run test",
"start": "ng serve & echo $! > .ng-serve.pid",
"stop": "kill $(cat .ng-serve.pid)",
"version:update": "npm --no-git-tag-version version $GITHUB_REF_NAME",
"version:inject": "cross-var replace \"@APP_VERSION@\" $npm_package_version src/app/app-info.ts",
"build": "ng build --configuration=$ENVIRONMENT --base-href /projects/ng-spotify-importer/",
"pree2e": "TS_NODE_PROJECT=e2e/tsconfig.json mocha -r ts-node/register 'e2e/**/*.spec.ts'",
"e2e": "npm run e2e:clean && wait-on -t $((1000 * 60 * 5)) http://localhost:4200 && TS_NODE_PROJECT=e2e/tsconfig.json wdio run e2e/wdio.conf.ts",
"e2e:clean": "rm -rf e2e/output",
"e2e:debug": "DEBUG=true npm run e2e",
"e2e:report": "allure generate --clean --output e2e/output/allure-report --single-file e2e/output/allure",
"upload": "TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/upload.ts",
"deploy": "npm run build && npm run upload",
"deploy:test": "TS_NODE_PROJECT=e2e/tsconfig.json wdio run e2e/wdio.conf.ts --spec e2e/test/deploy-specs/**/*.ts"
},
"browser": {
"crypto": false
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.6",
"@angular/cdk": "^15.2.6",
"@angular/common": "^15.2.6",
"@angular/compiler": "^15.2.6",
"@angular/core": "^15.2.6",
"@angular/forms": "^15.2.6",
"@angular/material": "^15.2.6",
"@angular/platform-browser": "^15.2.6",
"@angular/platform-browser-dynamic": "^15.2.6",
"@angular/router": "^15.2.6",
"crypto-js": "^4.1.1",
"fast-xml-parser": "^4.2.5",
"he": "^1.2.0",
"papaparse": "^5.4.1",
"rxjs": "^7.8.0",
"spotify-web-api-js": "^1.5.2",
"tslib": "^2.5.0",
"zone.js": "^0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.5",
"@angular/cli": "^15.2.5",
"@angular/compiler-cli": "^15.2.6",
"@types/he": "^1.2.0",
"@types/jasmine": "^4.3.1",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^18.15.11",
"@types/papaparse": "^5.3.7",
"@types/spotify-web-api-node": "^5.0.7",
"@types/ssh2-sftp-client": "^9.0.0",
"@wdio/allure-reporter": "^8.14.0",
"@wdio/cli": "^8.14.0",
"@wdio/local-runner": "^8.14.0",
"@wdio/mocha-framework": "^8.14.0",
"@wdio/spec-reporter": "^8.14.0",
"@xmldom/xmldom": "^0.8.7",
"allure-commandline": "2.32.0",
"codelyzer": "^6.0.2",
"cross-var": "^1.1.0",
"expect": "^29.5.0",
"jasmine-core": "^4.6.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"mocha": "^10.2.0",
"protractor": "^7.0.0",
"replace": "^1.2.2",
"spotify-web-api-node": "^5.0.2",
"ssh2-sftp-client": "^9.0.4",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.5",
"wait-on": "^7.0.1"
}
}