This repository was archived by the owner on Aug 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.99 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.99 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
{
"name": "webchatty",
"author": "Andy Christianson, Brian Luft, Willie Zutz",
"license": "MIT",
"version": "0.0.1",
"description": "Web-based threaded forum software.",
"main": "./build-backend/src/backend/webchatty.js",
"typings": "./build-backend/src/backend/webchatty.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/webchatty/webchatty.git"
},
"dependencies": {
"body-parser": "^1.14.1",
"compression": "^1.5.2",
"express": "^4.13.2",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"moment-timezone": "^0.4.1",
"morgan": "^1.6.1",
"mysql2": "^1.0.0-rc.1",
"request": "^2.69.0",
"should": "^8.0.1",
"stemmer": "^0.1.4",
"striptags": "^2.0.4",
"supertest": "^1.1.0",
"winston": "^2.1.1"
},
"devDependencies": {
"typescript": "^1.7.3",
"tsd": "^0.6.5",
"eslint": "^0.24.0",
"doctoc": "^0.14.2",
"bower": "^1.4.1",
"del": "^1.2.0",
"gulp": "^3.9.0",
"gulp-angular-templatecache": "^1.7.0",
"gulp-changed": "^1.2.1",
"gulp-clip-empty-files": "^0.1.1",
"gulp-concat": "^2.6.0",
"gulp-if": "^1.2.5",
"gulp-minify-css": "^1.2.0",
"gulp-ng-annotate": "^1.1.0",
"gulp-server-livereload": "^1.4.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-typescript": "^2.9.2",
"http-server": "^0.8.0",
"concurrently": "1.0.0"
},
"scripts": {
"prepublish": "tsd install && tsc && bower install && gulp build",
"start": "node ./build-backend/src/backend/runExampleServer",
"shacknews": "node ./build-backend/src/backend/runShacknewsServer",
"test": "node ./build-backend/src/backend/runTests",
"clean": "gulp clean",
"watch": "npm install && concurrent \"gulp watch\" \"tsc -w\" ",
"lint": "eslint -c .eslintrc $( find . -type f -name '*.js' | grep -v node_modules/ | grep -v gulpfile | grep -v build-frontend/ | grep -v build-backend/ | grep -v bower_components/ )",
"doctoc": "ls doc/*.md | xargs -L 1 doctoc --notitle"
}
}