forked from watson-developer-cloud/text-to-speech-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.19 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
{
"name": "@ibm-watson/text-to-speech-nodejs",
"version": "2.0.0",
"description": "IBM Watson Text to Speech sample application",
"engines": {
"node": ">=8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/text-to-speech-nodejs.git"
},
"author": "IBM Corp.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/text-to-speech-nodejs/issues"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babelify": "^10.0.0",
"body-parser": "^1.18.3",
"casperjs": "^1.1.4",
"dotenv": "6.2.0",
"express": "^4.16.4",
"express-browserify": "^1.0.3",
"express-rate-limit": "^3.4.0",
"express-react-views": "^0.11.0",
"express-secure-only": "^0.2.1",
"helmet": "^3.16.0",
"morgan": "^1.9.1",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"uglifyify": "^5.0.1",
"watson-developer-cloud": "^3.18.2",
"watson-react-components": "^0.6.19",
"whatwg-fetch": "2.0.4"
},
"scripts": {
"start": "node server.js",
"test-integration": "casperjs test ./test/integration/test.*.js",
"test-integration-runner": "NODE_ENV=test node casper-runner.js",
"test": "npm run lint && npm run test-unit && npm run test-integration-runner",
"test-unit": "mocha test/unit --exit",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)"
},
"devDependencies": {
"casperjs": "^1.1.4",
"codecov": "^3.6.5",
"eslint": "^5.15.3",
"mocha": "^6.0.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"phantomjs-prebuilt": "^2.1.16",
"supertest": "^4.0.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry"
}
],
"@babel/preset-react"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"private": true
}