forked from cianclarke/microservices-primer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 779 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 779 Bytes
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
{
"name": "microservicesExample",
"version": "0.0.1",
"dependencies": {
"async": "^1.2.1",
"body-parser": "~1.0.2",
"bootes": "projectodd/bootes#ff0b1fe",
"circuit-breakerjs": "0.0.5",
"cors": "2.5.3",
"express": "~4.0.0",
"ip": "~0.3.3",
"jStat": "1.2.1",
"jquery": "^2.1.4",
"request": "~2.40.0",
"underscore": "1.8.2",
"grus": "projectodd/grus#84394e9"
},
"devDependencies": {
"browserify": "^10.2.4",
"pm2": "0.14.1",
"watchify": "^3.2.2"
},
"license": "mit",
"main": "application.js",
"scripts": {
"start": "pm2 start pm2.json",
"stop": "pm2 kill",
"build": "browserify frontend/app.js > frontend/bundle.js -d",
"watch": "watchify frontend/app.js -o frontend/bundle.js -dv"
}
}