-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "shark-byte-node",
"version": "1.0.0",
"description": "collaborative real time front end previews",
"main": "index.js",
"scripts": {
"build-css": "node-sass --include-path scss scss/main.scss public/css/main.css",
"watch-css": "nodemon -e scss -x \"npm run build-css\"",
"start": "node server.js"
},
"author": "brandon kerr",
"license": "ISC",
"devDependencies": {
"babel-loader": "^6.2.8",
"http-server": "^0.9.0",
"node-sass": "^3.13.0",
"nodemon": "^1.11.0",
"webpack": "^1.13.3"
},
"dependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-preset-es2015": "^6.13.2",
"body-parser": "^1.15.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.2",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"express-messages": "^1.0.1",
"express-session": "^1.14.2",
"html2json": "^1.0.2",
"jsonwebtoken": "^7.1.9",
"mongoose": "^4.6.8",
"node-materialize": "^1.1.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0"
}
}