-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.78 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.78 KB
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
{
"name": "ErrorBoard",
"version": "2.0.0",
"description": "Track and fix JavaScript errors fired by your visitor's browsers",
"main": "eb.js",
"author": {
"name": "Aziz Yuldoshev",
"email": "yuldoshev.aziz@gmail.com",
"url": "http://lapple.me"
},
"repository": {
"type": "git",
"url": "git://github.com/Lapple/ErrorBoard.git"
},
"scripts": {
"start": "npm run build && node eb.js",
"build": "npm run browserify && npm run uglify",
"browserify": "NODE_ENV=production browserify client/app.js -o client/public/app.js",
"uglify": "uglifyjs client/public/app.js -o client/public/app.js -c unsafe,drop_console,warnings=false -m",
"watchify": "watchify client/app.js -o client/public/app.js -v",
"nodemon": "nodemon --ignore client/ eb.js"
},
"dependencies": {
"bluebird": "^2.9.27",
"body-parser": "^1.12.2",
"classnames": "^2.1.2",
"compression": "1.4.x",
"cookie-parser": "^1.3.4",
"ejs": "2.3.x",
"envify": "^3.2.0",
"express": "4.12.x",
"express-session": "^1.10.4",
"fs-extra": "^0.18.2",
"is-bot": "0.0.1",
"lodash": "3.3.x",
"moment": "^2.9.0",
"mongodb": "^2.0.32",
"page": "1.6.x",
"passport": "^0.2.1",
"passport-github": "^0.1.5",
"passport-google-oauth": "^0.2.0",
"passport-local": "^1.0.0",
"react": "^0.13.3",
"react-cookie": "^0.1.7",
"react-tools": "^0.12.2",
"serve-favicon": "^2.0.0",
"sockjs": "0.3.x",
"superagent": "^0.21.0",
"tmp": "0.0.25",
"uglify-js": "^2.4.16",
"useragent": "^2.0.8"
},
"devDependencies": {
"browserify": "9.0.x",
"browserify-shim": "3.8.x",
"nodemon": "^1.2.1",
"reactify": "^1.1.1",
"watchify": "2.4.x"
},
"browserify": {
"transform": [
"reactify"
]
}
}