This repository has been archived by the owner on Mar 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
102 lines (102 loc) · 3.14 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
{
"name": "solid-app",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0",
"start:es": "ng serve --configuration=es",
"start:https": "ng serve --host 0.0.0.0 --ssl --ssl-key ./certs/localhost.key --ssl-cert ./certs/localhost.crt",
"build": "ng build",
"lint": "ng lint",
"test": "ng test --code-coverage",
"e2e": "ng e2e",
"postinstall": "node patch.js",
"coverage": "cat ./coverage/lcov.info | coveralls",
"docs:prepare": "npm install -g gitbook-cli && gitbook install",
"int:extract": "ng xi18n --output-path locales",
"docs:watch": "gitbook serve ./a_docs ./docs/docs --open",
"docs:build": "gitbook build ./a_docs ./docs/docs",
"ghpages:build": "ng build --prod --output-path \"docs/\" && npm run docs:build && node patch_build.js"
},
"browser": {
"crypto": false,
"fetch": false,
"window": false
},
"private": true,
"dependencies": {
"@angular/animations": "^7.2.12",
"@angular/cdk": "^7.3.7",
"@angular/common": "^7.2.12",
"@angular/compiler": "^7.2.12",
"@angular/core": "^7.2.12",
"@angular/forms": "^7.2.12",
"@angular/http": "^7.2.12",
"@angular/material": "^7.3.7",
"@angular/platform-browser": "^7.2.12",
"@angular/platform-browser-dynamic": "^7.2.12",
"@angular/router": "^7.2.12",
"@ctrl/ngx-emoji-mart": "^0.15.1",
"@ng-select/ng-select": "^2.5.1",
"@solid/cli": "^0.1.0",
"@solid/query-ldflex": "^1.1.1",
"@types/chai": "^4.1.7",
"@types/cucumber": "^4.0.5",
"angular2-multiselect-dropdown": "^4.2.1",
"chai": "^4.2.0",
"core-js": "^2.5.4",
"crypto-js": "^3.1.9-1",
"cucumber": "^5.1.0",
"date-fns": "^2.0.0-alpha.25",
"http": "^0.0.0",
"inquirer": "^6.2.0",
"isomorphic-fetch": "^2.2.1",
"n3": "^1.0.2",
"ngx-toastr": "^9.0.2",
"node-fetch": "^2.2.0",
"path": "^0.12.7",
"prefix-ns": "^0.1.2",
"process": "^0.11.10",
"protractor-cucumber-framework": "^6.1.1",
"purecss": "^1.0.0",
"q": "^1.5.1",
"rdflib": "^0.19.0",
"rxjs": "^6.4.0",
"short-hash": "^1.0.0",
"solid-auth-client": "^2.2.10",
"solid-file-client": "^0.4.9",
"stdio": "^0.2.7",
"streamify-array": "^1.0.1",
"text-encoding": "^0.6.4",
"tslib": "^1.9.0",
"uniqid": "^5.0.3",
"uri-js": "^4.2.2",
"webcrypto": "^0.1.1",
"whatwg-url": "^7.0.0",
"winston": "^3.1.0",
"zone.js": "^0.8.29"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "^7.3.8",
"@angular/compiler-cli": "^7.2.12",
"@angular/language-service": "^7.2.12",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "~4.2.1",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.0.1",
"coveralls": "^3.0.3",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "^5.4.1",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typescript": "~3.2.4"
}
}