forked from bterlson/tcq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.54 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
{
"name": "tcq",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/bterlson/tcq"
},
"description": "A TC39 Discussion Queue",
"main": "index.js",
"scripts": {
"build-frontend": "webpack --config ./src/client/webpack.dev.js",
"build-frontend-watch": "webpack --watch --config ./src/client/webpack.dev.js",
"build-backend": "tsc -p ./src/server",
"build-production": "npm run build-backend && webpack -p --config ./src/client/webpack.prod.js",
"iterate": "npm run build-backend && concurrently \"npm run build-frontend-watch\" \"node ./dist/server/server.js\"",
"start": "node dist/server/server.js | \"./node_modules/.bin/bunyan\""
},
"author": "Brian Terlson",
"contributors": [
{
"name": "Daniel Rosenwasser",
"url": "https://github.com/DanielRosenwasser"
}
],
"license": "Apache-2.0",
"engines": {
"node": "8.0.0"
},
"dependencies": {
"applicationinsights": "^1.0.0",
"axios": "^0.16.2",
"base64-url": "^2.0.0",
"body-parser": "^1.18.2",
"bulma": "^0.6.0",
"bunyan": "^1.8.12",
"connect-ensure-login": "^0.1.1",
"cookie-session": "^1.3.3",
"documentdb": "^1.12.2",
"documentdb-session": "^1.0.1",
"documentdb-typescript": "^1.0.6",
"express": "^4.15.4",
"express-bunyan-logger": "^1.3.2",
"express-session": "^1.15.5",
"github": "^11.0.0",
"p-limit": "^1.2.0",
"passport": "^0.4.0",
"passport-github2": "^0.1.12",
"socket.io": "^2.2.0",
"socket.io-client": "^2.0.3",
"uuid": "^3.1.0",
"vue": "^2.5.2",
"vuedraggable": "^2.14.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.16.5",
"@types/bunyan": "^1.8.3",
"@types/connect-ensure-login": "^0.1.3",
"@types/documentdb": "^1.10.2",
"@types/documentdb-session": "^1.0.1",
"@types/express": "^4.0.39",
"@types/express-session": "^1.15.3",
"@types/node": "^8.0.28",
"@types/passport": "^0.3.4",
"@types/socket.io": "^1.4.31",
"@types/socket.io-client": "^1.4.31",
"@types/uuid": "^3.4.3",
"concurrently": "^3.5.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.11.0",
"sass-loader": "^6.0.6",
"strict-event-emitter-types": "^1.2.0",
"style-loader": "^0.19.0",
"ts-loader": "^2.3.7",
"typescript": "^2.8.1",
"vue-template-compiler": "^2.5.2",
"vue-template-loader": "^0.3.1",
"webpack": "^3.6.0",
"webpack-merge": "^4.1.0"
}
}