-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
56 lines (56 loc) · 1.43 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
{
"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": "[email protected]",
"url": "http://lapple.me"
},
"repository": {
"type": "git",
"url": "git://github.com/Lapple/ErrorBoard.git"
},
"config": {
"dbfile": "db",
"port": 3000
},
"scripts": {
"start": "npm run browserify && npm run uglify && node eb.js",
"browserify": "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": {
"nedb": "^1.1.1",
"express": "^4.11.1",
"moment": "^2.9.0",
"envify": "^3.2.0",
"lodash": "^2.4.1",
"sockjs": "^0.3.9",
"useragent": "^2.0.8",
"serve-favicon": "^2.0.0",
"superagent": "^0.21.0",
"vow": "^0.4.8",
"ejs": "^2.2.3",
"page": "^1.3.7",
"react": "^0.12.2",
"react-tools": "^0.12.2",
"compression": "^1.1.0",
"uglify-js": "^2.4.16"
},
"devDependencies": {
"nodemon": "^1.2.1",
"browserify": "^8.1.0",
"browserify-shim": "^3.8.2",
"watchify": "^2.3.0",
"reactify": "^1.0.0"
},
"browserify": {
"transform": [
"reactify"
]
}
}