-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.34 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
{
"name": "microsoft-cognitive-services-playground",
"version": "1.0.0",
"description": "A playground to test out some of the cognitive services API's provided by microsoft",
"main": "index.js",
"scripts": {
"start": "npm i && npm run bundle:helper && npm run build && npm run server",
"server": "node server.js",
"server:dev": "nodemon server.js",
"bundle:helper": "mkdir build && cd build && touch bundle.js",
"build": "browserify src/index.js -t babelify -o build/bundle.js",
"watch": "watchify src/index.js -t babelify -o build/bundle.js",
"dev": "npm run bundle:helper && npm run watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wardy/microsoft-cognitive-services-playground.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wardy/microsoft-cognitive-services-playground/issues"
},
"homepage": "https://github.com/wardy/microsoft-cognitive-services-playground#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"bluebird": "^3.4.1",
"browserify": "^13.0.1",
"nodemon": "^1.9.2",
"watchify": "^3.7.0"
},
"dependencies": {
"ejs": "^2.4.2",
"express": "^4.14.0"
},
"engine": "node >= 5.0.0"
}