-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.35 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
{
"name": "tox-chat-ui",
"version": "0.0.11",
"description": "A sample chat app ... ",
"main": "web.js",
"author": "Enrico Hoffmann <dasrick@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dasrick/tox-chat-ui.git"
},
"bugs": {
"url": "https://github.com/dasrick/tox-chat-ui/issues"
},
"homepage": "https://github.com/dasrick/tox-chat-ui#readme",
"dependencies": {
"angular": "^1.4.8",
"angular-resource": "^1.4.8",
"angular-sanitize": "^1.4.8",
"angular-ui-router": "^0.3.2",
"bootstrap": "^3.3.6",
"clean-css": "^3.4.8",
"express": "^4.13.3",
"font-awesome": "^4.5.0",
"fs-extra": "^1.0.0",
"glob": "^7.0.6",
"jscs": "^3.0.0",
"jshint": "^2.8.0",
"jshint-stylish": "^2.1.0",
"less": "^2.5.3",
"less-plugin-autoprefix": "^1.5.1",
"mi-angular-chat": "0.0.4",
"ng-annotate-webpack-plugin": "^0.1.2",
"ng-emoticons": "^2.0.0",
"ng-lodash": "^0.2.3",
"sockjs-client": "^1.0.3",
"stompjs": "^2.3.3",
"webpack": "^1.12.9"
},
"devDependencies": {
"angular-mocks": "^1.4.8",
"david": "^9.0.0"
},
"scripts": {
"postinstall": "npm run build",
"prebuild": "mkdir -p web/css/ web/js/ web/views/ web/fonts/font-awesome web/fonts/ng-emoticons web/images",
"build": "npm run build:views && npm run build:fonts && npm run build:imgs && npm run build:css && npm run jscs && npm run jshint && npm run build:js",
"build:css": "lessc --autoprefix='last 2 versions,ie 9' src/media/less/style.less web/css/style.css && cleancss --source-map -o web/css/style.min.css web/css/style.css",
"build:js": "webpack --config webpack.config.js",
"build:views": "node scripts/copy.js src/**/views/*.html web/views/",
"build:fonts": "npm run build:font-fontawesome",
"build:font-fontawesome": "cp -R node_modules/font-awesome/fonts/* web/fonts/font-awesome",
"build:font-ng-emoticons": "cp -R node_modules/ng-emoticons/fonts/* web/fonts/ng-emoticons",
"build:imgs": "npm run build:img-ng-emoticons",
"build:img-ng-emoticons": "cp -R node_modules/ng-emoticons/images/* web/images",
"jscs": "jscs ./src ./test ./scripts",
"jshint": "jshint ./src ./test ./scripts --reporter node_modules/jshint-stylish/index.js",
"start": "node web.js",
"test": "echo \"Error: no test specified\" && exit 0"
}
}