-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 4.47 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "wcn",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "ng serve",
"build": "ng build",
"build:dev": "ng build -c development",
"build:prod": "ng build -c production",
"test": "ng test --watch",
"test:ci": "ng test --code-coverage",
"lint": "nx workspace-lint && ng lint",
"lint-fix": "nx format:write; nx workspace-lint; ng lint",
"e2e": "DEBUG=cypress:*,-cypress:server:timers,-cypress:server:specs,-cypress:server:events,-cypress:server:file,-cypress:server:cors,-cypress:server:proxy,-cypress:server:project ng e2e --watch",
"e2e:ci": "ng e2e --headless",
"serve": "node tools/server.js",
"analyze": "webpack-bundle-analyzer ./dist/apps/wcn/stats-es2015.json ./dist/apps/wcn/ --mode=static --report=dist/apps/wcn-size-report/index.html --no-open",
"deploy": "firebase deploy --only hosting --token \"$FIREBASE_TOKEN\" --project dev",
"deploy:prod": "firebase deploy --only hosting --token \"$FIREBASE_TOKEN\" --project prod",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "ng update @nrwl/workspace",
"update:check": "ng update",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"stitch:login": "stitch-cli login --username=$ATLAS_MONGODB_API_USER --api-key=$ATLAS_MONGODB_API_KEY --yes",
"prestitch:export:dev": "rm -rf stitch/dev-what-conference-next",
"prestitch:export:prod": "rm -rf stitch/what-conference-next",
"stitch:export:dev": "stitch-cli export --app-id=dev-what-conference-next-kzfdc --output=stitch/dev-what-conference-next --yes",
"stitch:export:prod": "stitch-cli export --app-id=what-conference-next-eqvxa --output=stitch/what-conference-next --yes",
"stitch:deploy:dev": "stitch-cli import --app-id=dev-what-conference-next-kzfdc --app-name=dev-what-conference-next --path=stitch/dev-what-conference-next --strategy=replace",
"stitch:deploy:prod": "stitch-cli import --app-id=what-conference-next-eqvxa --app-name=what-conference-next --path=stitch/what-conference-next --strategy=replace",
"all": "yarn install --frozen-lockfile && yarn lint-fix && yarn test:ci && yarn build:dev",
"help": "nx help"
},
"private": true,
"dependencies": {
"@angular/animations": "9.0.0-next.8",
"@angular/cdk": "8.2.2",
"@angular/common": "9.0.0-next.8",
"@angular/compiler": "9.0.0-next.8",
"@angular/core": "9.0.0-next.8",
"@angular/forms": "9.0.0-next.8",
"@angular/material": "8.2.2",
"@angular/platform-browser": "9.0.0-next.8",
"@angular/platform-browser-dynamic": "9.0.0-next.8",
"@angular/router": "9.0.0-next.8",
"@ngrx/effects": "8.3.0",
"@ngrx/entity": "8.3.0",
"@ngrx/router-store": "8.3.0",
"@ngrx/store": "8.3.0",
"@nrwl/angular": "8.5.2",
"angulartics2": "8.1.0",
"core-js": "3.2.1",
"foundation-sites": "6.5.3",
"hammerjs": "2.0.8",
"lodash-es": "4.17.15",
"mongodb-stitch-browser-sdk": "4.5.0",
"rxjs": "6.5.3",
"tslib": "1.10.0",
"zone.js": "0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.900.0-next.6",
"@angular/cli": "9.0.0-next.6",
"@angular/compiler-cli": "9.0.0-next.8",
"@angular/language-service": "9.0.0-next.8",
"@ngrx/store-devtools": "8.3.0",
"@nrwl/cypress": "8.5.2",
"@nrwl/workspace": "8.5.2",
"@types/jasmine": "3.4.1",
"@types/lodash-es": "4.17.3",
"@types/node": "12.7.8",
"codelyzer": "5.1.2",
"cypress": "3.4.1",
"dotenv": "8.1.0",
"eslint": "6.5.1",
"express-history-api-fallback": "2.2.1",
"firebase-tools": "7.4.0",
"jasmine-core": "3.5.0",
"jasmine-marbles": "0.6.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.3.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "2.1.0",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"mongodb-stitch-cli": "1.7.0",
"node-sass": "4.12.0",
"prettier": "1.18.2",
"rxjs-tslint-rules": "4.25.0",
"ts-loader": "6.2.0",
"ts-node": "8.4.1",
"tslint": "5.20.0",
"typescript": "3.5.3",
"webpack-bundle-analyzer": "3.5.2"
}
}