-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (96 loc) · 2.54 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
95
96
97
98
{
"name": "node-voucher-app",
"version": "0.0.1",
"description": "A demo app consisting of a voucher API and a simple web frontend to use it",
"main": "index.js",
"scripts": {
"dev:server": "NODE_ENV=development nodemon server/server-entry.js",
"dev:static": "gulp",
"dev:initdb": "mongofixtures voucher_dev server/database/fixtures_dev.js",
"prod:static": "gulp -- build",
"prod:server": "NODE_ENV=production nodemon server/server-entry.js",
"test": "npm-run-all test:run",
"test:run": "NODE_ENV=test mocha -S --compilers js:babel-core/register --recursive ./test/server"
},
"keywords": [
"voucher",
"react",
"redux",
"express",
"mongodb",
"mongo",
"gulp"
],
"babel": {
"presets": [
"stage-0",
"es2015",
"react"
],
"plugins": [
"transform-class-properties",
"transform-decorators-legacy"
]
},
"author": "André Santos",
"license": "ISC",
"dependencies": {
"async": "2.0.0-rc.5",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-register": "6.9.0",
"babelify": "7.3.0",
"body-parser": "1.15.1",
"bootstrap": "3.3.6",
"browserify": "13.0.1",
"debug": "2.2.0",
"express": "4.13.4",
"gulp": "3.9.1",
"gulp-autoprefixer": "3.1.0",
"gulp-concat": "2.6.0",
"gulp-cssimport": "3.0.2",
"gulp-cssmin": "0.1.7",
"gulp-if": "2.0.1",
"gulp-less": "3.1.0",
"gulp-plumber": "1.1.0",
"gulp-sourcemaps": "1.6.0",
"gulp-uglify": "1.5.3",
"gulp-util": "3.0.7",
"hbs": "4.0.0",
"immutable": "3.8.1",
"isomorphic-fetch": "2.2.1",
"jquery": "2.2.4",
"md5": "2.1.0",
"mongoose": "4.4.17",
"mongoose-paginate": "5.0.0",
"morgan": "1.7.0",
"react": "15.0.2",
"react-bootstrap": "0.29.4",
"react-dom": "15.0.2",
"react-logger": "1.0.0",
"react-redux": "4.4.5",
"react-router": "2.4.1",
"react-router-bootstrap": "0.23.0",
"react-router-redux": "4.0.4",
"redux": "3.5.2",
"redux-actions": "0.9.1",
"redux-immutable": "3.0.6",
"redux-logger": "2.6.1",
"redux-thunk": "2.1.0",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0",
"watchify": "3.7.0"
},
"devDependencies": {
"chai": "3.5.0",
"chai-datetime": "1.4.1",
"mocha": "2.4.5",
"nodemon": "1.9.2",
"npm-run-all": "2.1.1",
"pow-mongodb-fixtures": "0.13.0",
"sinon": "1.17.4",
"supertest": "1.2.0"
}
}