-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.25 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
{
"name": "patrickvanzadel",
"version": "1.0.0",
"description": "Code for patrickvanzadel.com",
"author": "Patrick van Zadel <patrick.van.zadel@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/Shuyinsama/patrickvanzadel.com"
},
"bugs": {
"url": "https://github.com/Shuyinsama/patrickvanzadel.com/issues"
},
"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 --compilers js:babel-register",
"watch": "gulp"
},
"dependencies": {
"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",
"body-parser": "^1.15.1",
"browserify": "^13.0.0",
"compression": "^1.6.2",
"cookie-parser": "^1.4.1",
"dotenv": "^4.0.0",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"express-validator": "^3.1.2",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-csso": "^2.0.0",
"gulp-if": "^2.0.0",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^2.4.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"mongoose": "^4.4.8",
"morgan": "^1.7.0",
"nodemailer": "^2.3.0",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-redux": "5.0.2",
"react-router": "^3.0.1",
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0",
"whatwg-fetch": "^2.0.1",
"yargs": "^6.6.0"
},
"devDependencies": {
"babel-plugin-rewire": "1.0.0",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"fetch-mock": "5.8.1",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.0.2",
"redux-mock-store": "^1.0.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"supertest": "^2.0.1"
},
"engines": {
"node": "6.1.0"
}
}