-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.24 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
{
"name": "tally",
"version": "1.0.0",
"description": "a check-in and member point aggregation system",
"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",
"nodemon": "nodemon server.js",
"test": "jest",
"test:watch": "npm test -- --watch",
"watch": "gulp",
"watchify": "gulp watchify"
},
"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",
"babel-template": "^6.26.0",
"babel-types": "^6.26.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-validator": "^2.20.4",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-csso": "^1.1.0",
"gulp-if": "^2.0.0",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"jade": "^1.11.0",
"jsonwebtoken": "^5.7.0",
"moment": "^2.12.0",
"mongoose": "^4.4.8",
"morgan": "^1.7.0",
"nodemailer": "^2.3.0",
"prop-types": "^15.6.1",
"react": "15.1.0",
"react-cookie": "^0.4.5",
"react-dom": "15.1.0",
"react-redux": "4.4.1",
"react-router": "^2.4.0",
"react-table": "^6.8.0",
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.0.1",
"request": "^2.69.0",
"sweetalert": "^2.1.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-jest": "^22.4.3",
"babel-plugin-rewire": "1.0.0-rc-3",
"babel-register": "^6.8.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15.4": "^1.0.5",
"fetch-mock": "^6.3.0",
"jest": "^22.4.3",
"react-addons-test-utils": "15.1.0",
"redux-mock-store": "^1.5.1"
},
"jest": {
"roots": [
"<rootDir>/app/"
]
}
}