-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.13 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
{
"name": "JobiJobo",
"version": "1.0.0",
"description": "JobiJobo help you to organize your job research ",
"scripts": {
"build": "gulp build",
"build:production": "gulp build --production",
"deploy": "npm test && git push heroku master",
"postinstall": "npm run build:production",
"start": "node server.js",
"test": "npm run test:client && npm run test:server",
"test:client": "mocha test/client --recursive --compilers js:babel-register",
"test:server": "mocha test/server --recursive",
"watch": "gulp"
},
"dependencies": {
"async": "^1.5.2",
"babel-core": "^6.7.2",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.15.1",
"browserify": "^13.0.0",
"compression": "^1.6.2",
"cookie-parser": "^1.4.1",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"express-validator": "^2.20.4",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-csso": "^1.1.0",
"gulp-if": "^2.0.0",
"gulp-less": "^3.0.5",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"jsonwebtoken": "^5.7.0",
"moment": "^2.12.0",
"mongoose": "^4.4.8",
"morgan": "^1.7.0",
"nodemailer": "^2.3.0",
"react": "15.1.0",
"react-cookie": "^0.4.5",
"react-dom": "15.1.0",
"react-redux": "4.4.1",
"react-router": "^2.4.0",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1",
"request": "^2.69.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0",
"whatwg-fetch": "^0.11.0",
"yargs": "^4.3.2"
},
"devDependencies": {
"babel-plugin-rewire": "^1.0.0-rc-3",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"fetch-mock": "3.0.2",
"mocha": "^2.4.5",
"react-addons-test-utils": "^15.0.2",
"redux-mock-store": "^1.0.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0"
},
"engines": {
"node": "6.1.0"
}
}