-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "FINAL_PROJECT",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"postinstall": "bower install",
"build": "browserify client/src/js/app.js > client/dist/js/app.js",
"build:watch": "watchify -t babelify -t brfs client/src/js/app.js -d -o client/dist/js/app.js -v",
"start": "node index",
"dev": "nodemon index"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"angular-route": "^1.6.4",
"body-parser": "^1.17.2",
"bower": "^1.8.0",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-session": "^1.15.3",
"mongoose": "^4.10.4",
"express-jwt": "^5.3.0",
"jsonwebtoken": "^7.4.1",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0"
},
"devDependencies": {
"angular": "^1.6.4",
"angular-jwt": "^0.1.9",
"babelify": "^7.3.0",
"brfs": "^1.4.3",
"browserify": "^14.4.0",
"cheerio": "^1.0.0-rc.1",
"nodemon": "^1.11.0",
"request-promise": "^4.2.1",
"watchify": "^3.9.0"
}
}