-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.49 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
99
{
"name": "venuebooker",
"description": "venuebooker web",
"version": "0.0.1",
"private": true,
"main": "server.js",
"license": "MIT",
"engines": {
"node": "5.4.x"
},
"repository": {
"type": "git",
"url": "https://github.com/aamirafridi/MongooseReactForm/"
},
"eslintConfig": {
"globals": {
"google": true,
"browser": true
}
},
"config": {
"pre-git": {
"pre-commit": [
"npm run lint"
],
"pre-push": [],
"post-commit": [],
"post-merge": []
}
},
"scripts": {
"start": "node server.js",
"watch": "nodemon server.js",
"build-assets": "./node_modules/gulp/bin/gulp.js build",
"watch-assets": "./node_modules/gulp/bin/gulp.js watch",
"db": "mongod --httpinterface",
"test": "istanbul cover _mocha test/*.js",
"lint": "eslint ./",
"sourcetree": "open /Applications/SourceTree.app/Contents/MacOS/SourceTree"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM"
},
"dependencies": {
"babel-core": "^6.3.26",
"babel-plugin-syntax-class-properties": "^6.0.14",
"babel-plugin-transform-class-properties": "^6.0.14",
"babel-preset-es2015-node5": "^1.0.0",
"babel-preset-react": "^6.1.2",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.14.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^0.8.2",
"cookie-parser": "^1.4.0",
"express": "~4.12.3",
"express-handlebars": "^2.0.1",
"express-session": "^1.11.3",
"iso": "^4.2.0",
"lodash": "^3.10.1",
"moment-timezone": "^0.4.1",
"mongoose": "~4.2.2",
"mongoose-sequence": "^1.0.0",
"morgan": "^1.6.1",
"nodemailer": "^0.7.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"reqwest": "^2.0.5",
"urlsafe-base64": "^1.0.0",
"xhr2": "^0.1.3"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-eslint": "^4.1.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"browserify-shim": "^3.8.11",
"del": "^2.0.2",
"eslint": "^1.9.0",
"eslint-config-airbnb": "^0.1.1",
"eslint-config-react": "^1.1.0",
"eslint-plugin-react": "^3.9.0",
"event-stream": "^3.3.2",
"glob": "^6.0.1",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.0.4",
"nodemon": "~1.3.7",
"vinyl-source-stream": "^1.1.0"
}
}