forked from conc-at/twitterwall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.77 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
102
103
104
105
106
107
108
{
"name": "twitterwall",
"private": true,
"version": "1.0.0",
"description": ".concat() twitterwall",
"main": "index.js",
"engines": {
"iojs": "^1.0.0"
},
"scripts": {
"build": "bash ./bin/build",
"build-css": "lessc app/styles/index.less > build/bundle.css",
"build-html": "cp app/templates/*.html build/",
"build-js": "browserify app/index.js > build/bundle.js",
"clean": "rm -rf build && mkdir build",
"copy": "cp -r app/images build",
"watch-css": "watch 'npm run build-css' app/styles",
"watch-html": "watch 'npm run build-html' app/templates",
"watch-js": "watchify app/index.js -o build/bundle.js -dv",
"watch": "./bin/watch",
"dev": "./bin/dev",
"kill-dev": "ps ax | grep watch | awk '{print $1}' | xargs kill",
"start": "npm run build && nf start",
"test": "standard",
"install": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/conc-at/twitterwall.git"
},
"keywords": [
"twitter",
"tweet",
"twitterwall"
],
"author": "",
"contributors": [
"Stephan Bönnemann <[email protected]>",
"Christoph Witzko <[email protected]>"
"André Langer <[email protected]> (http://www.andré-langer.de/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/conc-at/twitterwall/issues"
},
"homepage": "https://github.com/conc-at/twitterwall",
"dependencies": {
"angular": "^1.3.13",
"angular-animate": "^1.3.13",
"angular-sanitize": "^1.3.13",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.10.0",
"browserify": "^14.1.0",
"browserify-shim": "^3.8.1",
"cors": "^2.5.2",
"debug": "^2.1.0",
"express": "^4.10.6",
"foreman": "^2.0.0",
"lanyrd": "^0.2.1",
"less": "^2.1.2",
"lodash.omit": "^4.5.0",
"markdown": "^0.5.0",
"moment": "^2.8.3",
"ng-time-relative": "^0.7.0",
"parallizer": "^2.0.1",
"randomcolor": "^0.5.0",
"request": "^2.51.0",
"socket.io": "1.7.4",
"socket.io-client": "1.7.2",
"twemoji": "^2.2.0",
"twit": "^2.2.5",
"twitter-text": "^1.9.4",
"url-join": "^2.0.2",
"watch": "^1.0.1"
},
"devDependencies": {
"standard": "*",
"watchify": "^3.7.0"
},
"standard": {
"ignore": [
"build/**"
]
},
"browser": {
"angular": "./node_modules/angular/angular.js",
"angular-sanitize": "./node_modules/angular-sanitize/angular-sanitize.js",
"angular-animate": "./node_modules/angular-animate/angular-animate.js"
},
"browserify-shim": {
"angular": "angular",
"angular-sanitize": {
"depends": [
"angular"
]
},
"angular-animate": {
"depends": [
"angular"
]
}
},
"browserify": {
"transform": [
"browserify-shim"
]
}
}