This repository was archived by the owner on Apr 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·89 lines (89 loc) · 2.72 KB
/
package.json
File metadata and controls
executable file
·89 lines (89 loc) · 2.72 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
{
"name": "igraph",
"version": "2.0.0",
"Description": "Natural language to plot conversion API based application.",
"private": true,
"scripts": {
"server": "nodemon server/server.js",
"test:server": "./node_modules/.bin/mocha server/test --exit",
"ng": "ng",
"ui": "ng serve -H 0.0.0.0 --proxy-config UI/proxy.conf.json",
"build:ui": "ng build",
"test:ui": "ng test --exit",
"start:nlp": "node nlp.server.js",
"start": "concurrently \"npm run start:nlp\" \"npm run server\" \"npm run ui\"",
"test": "concurrently \"npm run test:ui\" \"npm run test:server\""
},
"dependencies": {
"@angular/animations": "^5.2.0",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"@types/plotly.js": "^1.35.0",
"autodetect-decoder-stream": "^1.0.0",
"body-parser": "^1.18.2",
"bootstrap": "^4.0.0",
"concurrently": "^3.5.1",
"cookie-parser": "^1.4.3",
"core-js": "^2.4.1",
"cors": "^2.8.4",
"express": "^4.16.2",
"font-awesome": "^4.7.0",
"fs": "0.0.1-security",
"hbs": "^4.0.1",
"intl": "^1.2.5",
"knex": "^0.14.4",
"leftpad": "0.0.1",
"multer": "^1.3.0",
"mysql": "^2.15.0",
"ng-http-loader": "^0.9.0",
"ngx-select-ex": "^3.5.0-ng4",
"node-cmd": "^3.0.0",
"nodemon": "^1.17.1",
"npm": "^5.7.1",
"plotly.js": "^1.35.2",
"primeng": "^5.2.3",
"request-promise": "^4.2.2",
"rxjs": "^5.5.6",
"serve-favicon": "^2.4.5",
"string-similarity": "^1.2.0",
"sync": "^0.2.5",
"tables": "0.0.5",
"winston": "^2.4.1",
"zone.js": "^0.8.19"
},
"devDependencies": {
"@angular/cli": "~1.7.2",
"@angular/compiler-cli": "^5.2.0",
"@angular/language-service": "^5.2.0",
"@babel/core": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"http-status": "^1.0.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-babel-preprocessor": "^8.0.0-beta.0",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-webpack": "^3.0.0",
"mocha": "^5.0.4",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2",
"ts-node": "~4.1.0",
"typescript": "~2.5.3"
}
}