-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "webmush",
"version": "0.1.0",
"description": "A web-based Multi-User Shared Hallucination",
"repository": "git://jabberwocky.ca/~git/pub/webmush.git",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "node_modules/.bin/webpack",
"dev": "npm run build && npm start",
"nodemon": "nodemon --ignore build --ignore data --exec npm run dev",
"test": "echo \"Error: no test specified\" && exit 1",
"wc": "wc client/*.js client/*/*.js server/*.js server/*/*.js lib/*.js"
},
"author": "transistor",
"license": "GPL-3.0",
"dependencies": {
"bcryptjs": "1.0.2",
"body-parser": "1.16.1",
"cookie-parser": "1.4.3",
"express": "4.14.1",
"express-session": "1.15.1",
"express-ws": "3.0.0",
"mithril": "1.1.3",
"morgan": "1.8.1",
"multer": "1.3.0",
"passport": "0.3.2",
"passport-local": "1.0.0"
},
"devDependencies": {
"css-loader": "0.27.3",
"extract-text-webpack-plugin": "2.1.0",
"style-loader": "0.16.0",
"webpack": "2.2.1"
}
}