-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"precommit": "npx xo",
"prepush": "npx xo",
"start": "node app.js",
"dev": " npx nodemon --watch 'app.js' --exec 'clear && babel-node app.js'",
"test": "mocha \"./{,!(node_modules)/**}/*.test.js\"",
"heroku-postbuild": "cd client && yarn --production=true && yarn run build"
},
"dependencies": {
"async": "^2.6.0",
"axios": "^0.18.0",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.2.0",
"mongoose": "^5.0.9",
"morgan": "^1.9.0",
"node-soundcloud": "^0.0.6",
"passport": "^0.4.0",
"passport-google": "^0.3.0",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"youtube-node": "^1.3.2"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"chai": "^4.1.2",
"husky": "^0.14.3",
"mocha": "^5.0.4",
"nodemon": "^1.17.1",
"sinon": "^4.4.2",
"xo": "^0.20.3"
}
}