-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.7 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
{
"name": "nlp-app",
"version": "1.0.0",
"description": "App for comparing NLP APIs",
"main": "server.js",
"scripts": {
"build": "babel --watch src/ --out-dir dist/ --source-maps --copy-files",
"start": "webpack-dev-server",
"debug": "node-debug --debug-brk dist/server/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lsimmons2/nlp-app.git"
},
"author": "Leo Simmons <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/lsimmons2/nlp-app/issues"
},
"homepage": "https://github.com/lsimmons2/nlp-app#readme",
"devDependencies": {
"angular-mocks": "^1.5.8",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"css-loader": "^0.26.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-forever-monitor": "0.0.3",
"gulp-livereload": "^3.8.1",
"gulp-mocha": "^3.0.1",
"gulp-nodemon": "^2.2.1",
"gulp-util": "^3.0.7",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.2.0",
"karma-spec-reporter": "0.0.26",
"mocha": "^3.1.2",
"nock": "^9.0.2",
"nodemon": "^1.11.0",
"react-hot-loader": "^1.3.1",
"redux-mock-store": "^1.2.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"supertest": "^2.0.1",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^1.16.2",
"webpack-hot-middleware": "^2.13.2",
"webpack-stream": "^3.2.0"
},
"dependencies": {
"angular": "^1.5.8",
"angular-route": "^1.5.8",
"angular-ui-bootstrap": "^2.2.0",
"aylien_textapi": "^0.6.0",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"connect": "^3.5.0",
"cookie-parser": "^1.4.3",
"es6-promise": "^4.0.5",
"express": "^4.14.0",
"indico.io": "^0.10.5",
"jquery": "^3.1.1",
"lodash": "^4.17.2",
"method-override": "^2.3.6",
"mongodb": "^2.2.11",
"mongoose": "^4.6.5",
"node-sass": "^3.10.1",
"nodemailer": "^2.6.4",
"path": "^0.12.7",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-tooltip": "^3.2.2",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"whatwg-fetch": "^2.0.1",
"winston": "^2.3.0",
"winston-daily-rotate-file": "^1.4.0"
}
}