-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
101 lines (101 loc) · 2.74 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
100
101
{
"name": "timesheetz",
"title": "Timesheet Application",
"main": "./api/server.js",
"description": "Timesheet application for React training labs",
"version": "0.0.1",
"scripts": {
"run_dev": "NODE_ENV=development nodemon api/server.js",
"run_prod": "NODE_ENV=production nodemon api/server.js",
"debug": "node-debug api/server.js"
},
"dependencies": {
"axios": "^0.5.4",
"better-console": "^0.2.4",
"boom": "^2.8.0",
"classnames": "^2.1.3",
"es6-promise": "^2.0.1",
"extend": "^3.0.0",
"flux": "^2.0.1",
"font-awesome": "^4.3.0",
"good": "^6.3.0",
"good-console": "^5.0.2",
"hapi": "^8.2.0",
"hapi-auth-basic": "^3.0.0",
"hapi-auth-cookie": "^3.0.1",
"hoek": "^2.11.0",
"jade": "^1.9.2",
"joi": "^6.6.1",
"keymirror": "^0.1.1",
"lodash": "^3.5.0",
"moment": "^2.9.0",
"nedb": "^1.1.1",
"nprogress": "^0.2.0",
"object-assign": "^3.0.0",
"open": "0.0.5",
"q": "^1.2.0",
"react": "^0.13.3",
"react-router": "^0.13.3",
"react-select": "^0.6.1",
"tether": "^1.1.0",
"through2": "^2.0.0",
"tracer": "^0.7.3",
"winston": "^1.0.1"
},
"devDependencies": {
"browserify": "^11.0.1",
"browserify-shim": "^3.8.10",
"chai": "^3.2.0",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^2.1.0",
"gulp-changed": "^1.2.1",
"gulp-chmod": "^1.2.0",
"gulp-clone": "^1.0.0",
"gulp-concat": "^2.5.2",
"gulp-concat-css": "^2.1.1",
"gulp-docco": "0.0.4",
"gulp-filesize": "0.0.6",
"gulp-flatten": "^0.0.4",
"gulp-header": "^1.2.2",
"gulp-if": "^1.2.5",
"gulp-jade": "^1.0.0",
"gulp-jshint": "^1.9.2",
"gulp-less": "^3.0.0",
"gulp-livereload": "^3.7.0",
"gulp-minify-css": "^1.0.0",
"gulp-nodemon": "^1.0.5",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.0",
"gulp-print": "^1.1.0",
"gulp-react": "^3.0.0",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.5.3",
"gulp-shell": "^0.3.0",
"gulp-sourcemaps": "^1.3.0",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.3",
"gulp-watch": "^4.1.1",
"karma": "^0.13.8",
"karma-browserify": "^4.3.0",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.0",
"karma-phantomjs-launcher": "^0.2.1",
"lazypipe": "^1.0.1",
"merge-stream": "^0.1.7",
"mocha": "^2.2.1",
"proxyquire": "1.4.0",
"proxyquire-universal": "1.0.3",
"proxyquireify": "3.0.0",
"reactify": "^1.0.0",
"require-dot-file": "^0.4.0",
"sinon": "^1.12.2",
"sinon-chai": "^2.7.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"walkdir": "0.0.10",
"watchify": "^3.3.1"
}
}