-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
89 lines (89 loc) · 2.93 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
85
86
87
88
89
{
"name": "auth0-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:local": "concurrently --raw --kill-others --success first npm:start:local:oidc npm:start:local:playground",
"start:local:oidc": "node scripts/oidc-provider",
"start:local:playground": "ng serve --configuration=local",
"prebuild": "npm run update-useragent",
"build:dev": "ng build && npm run build:schematics",
"build": "ng build --configuration=production && npm run build:schematics",
"build:schematics": "npm run build --prefix projects/auth0-angular",
"postbuild": "cp README.md ./dist/auth0-angular/",
"test": "jest",
"test:ci": "jest --coverage --silent",
"e2e": "ng e2e",
"e2e:headless": "ng e2e --no-watch --headless",
"e2e:ci": "concurrently --raw --kill-others --success first npm:start:local:oidc npm:e2e:headless",
"lint": "ng lint",
"docs": "typedoc",
"pretty-quick": "pretty-quick",
"update-useragent": "node projects/auth0-angular/scripts/update-useragent.js",
"server:api": "node api-server.js"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.4.0",
"@angular/common": "^13.4.0",
"@angular/compiler": "^13.4.0",
"@angular/core": "^13.4.0",
"@angular/platform-browser": "^13.4.0",
"@angular/platform-browser-dynamic": "^13.4.0",
"@angular/router": "^13.4.0",
"@auth0/auth0-spa-js": "^2.1.3",
"rxjs": "^6.6.7",
"tslib": "^2.6.3",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.11",
"@angular-eslint/builder": "13.5.0",
"@angular-eslint/eslint-plugin": "13.5.0",
"@angular-eslint/eslint-plugin-template": "13.5.0",
"@angular-eslint/schematics": "13.5.0",
"@angular-eslint/template-parser": "13.5.0",
"@angular/cli": "^13.3.11",
"@angular/compiler-cli": "^13.4.0",
"@angular/forms": "^13.4.0",
"@cypress/schematic": "^2.4.0",
"@types/jasmine": "^3.10.18",
"@types/jasminewd2": "~2.0.13",
"@types/jest": "^29.2.2",
"@types/node": "^12.19.8",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"browserstack-cypress-cli": "^1.31.1",
"concurrently": "^6.2.0",
"cors": "^2.8.5",
"cypress": "^13.12.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"express-jwt": "^8.4.1",
"husky": "^4.3.8",
"jest": "^28.1.3",
"jest-preset-angular": "^12.2.6",
"jwks-rsa": "^3.1.0",
"moment": "^2.30.1",
"ng-packagr": "^13.3.1",
"oidc-provider": "^7.6.0",
"prettier": "^2.8.8",
"pretty-quick": "^2.0.2",
"protractor": "~7.0.0",
"ts-node": "~8.10.2",
"typedoc": "^0.25.13",
"typescript": "~4.6.4"
},
"prettier": {
"semi": true,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}