-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.39 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.39 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "capstone-server",
"description": "Server and orchistration engine for zombie chatbot task manager application",
"version": "0.0.1",
"private": true,
"author": "ajb481",
"repository": {
"type": "git",
"url": "https://kgower.visualstudio.com/_git/Capstone"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"deploy": "gcloud app deploy",
"start": "node app.js",
"lint": "repo-tools lint",
"pretest": "npm run lint",
"unit-test": "jest",
"system-test": "repo-tools test app",
"test": "npm run system-test",
"e2e-test": "repo-tools test deploy"
},
"dependencies": {
"@angular/animations": "^6.0.7",
"@angular/cdk": "^6.3.2",
"@angular/common": "^6.0.7",
"@angular/compiler": "^6.0.7",
"@angular/core": "^6.0.7",
"@angular/forms": "^6.0.7",
"@angular/http": "^6.0.3",
"@angular/material": "^6.3.2",
"@angular/platform-browser": "^6.0.7",
"@angular/platform-browser-dynamic": "^6.0.7",
"@angular/router": "^6.0.7",
"@google-cloud/datastore": "^1.4.1",
"auth0-lock": "^11.7.2",
"body-parser": "^1.18.3",
"core-js": "^2.5.7",
"createjs-module": "^0.8.3",
"dialogflow": "^0.4.0",
"dotenv": "^5.0.1",
"express": "4.16.2",
"hammerjs": "^2.0.8",
"hoek": "^5.0.3",
"moment": "^2.22.2",
"rxjs": "^6.2.1",
"socket.io": "^2.1.1",
"uuid": "^3.3.2",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.6.8",
"@angular/cli": "^6.0.8",
"@angular/compiler-cli": "^6.0.7",
"@angular/language-service": "^6.0.7",
"@google-cloud/nodejs-repo-tools": "2.2.1",
"@types/jest": "^22.2.3",
"@types/node": "~8.9.4",
"canvas-prebuilt": "^1.6.5-prerelease.1",
"codelyzer": "~4.2.1",
"eslint": "^4.19.1",
"eslint-plugin-jest": "^21.15.2",
"jest": "^22.4.4",
"jest-mock-console": "^0.4.0",
"jest-preset-angular": "^5.2.3",
"proxyquire": "^2.0.1",
"sinon": "^5.1.1",
"supertest": "^3.1.0",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typescript": "~2.7.2"
},
"cloud-repo-tools": {
"test": {
"app": {
"msg": "Hello, world!"
}
},
"requiresKeyFile": true,
"requiresProjectId": true
},
"jest": {
"preset": "jest-preset-angular",
"roots": [
"<rootDir>"
],
"setupTestFrameworkScriptFile": "<rootDir>/src/setup-jest.ts"
}
}