-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
43 lines (43 loc) · 961 Bytes
/
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
{
"name": "banking-in-action",
"version": "1.0.0",
"description": "RxJS in Action sample application",
"main": "app.js",
"scripts": {
"test": "mocha",
"start": "node server.js",
"gulp": "gulp"
},
"keywords": [
"sample",
"rxjs",
"reactive-extensions",
"reactive"
],
"author": "Paul P. Daniels <paulpdaniels@gmail.com>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"gulp": "~3.9.1",
"gulp-concat": "~2.6.1",
"gulp-jshint": "~2.1.0",
"gulp-rename": "~1.2.3",
"gulp-sass": "~4.0.1",
"gulp-serve": "~1.4.0",
"gulp-uglify": "~3.0.0",
"jshint": "~2.9.5",
"mocha": "~5.2.0"
},
"dependencies": {
"bootstrap": "^3.3.6",
"connect": "^3.5.0",
"moment": "^2.14.1",
"ramda": "^0.22.1",
"react": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.1",
"redux": "^3.6.0",
"rxjs": "5.0.3",
"serve-static": "^1.11.2"
}
}