-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 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": "dash-api",
"version": "0.0.0",
"description": "Dash Backend",
"main": "build/app.js",
"scripts": {
"build": "rm -rf build && babel ./ --out-dir ./build --include-dotfiles --copy-files --ignore \"node_modules/**/*\"",
"start": "nodemon --exec babel-node app.js",
"lint": "eslint --fix --ext .js,.jsx ."
},
"xo": {
"prettier": true
},
"author": "Saurav M. H",
"url": "https://github.com/bundly/dash",
"license": "MIT",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.10.5",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.9",
"passport": "^0.4.1",
"passport-discord": "^0.1.4",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/runtime": "^7.9.2",
"babel-eslint": "^10.1.0",
"bcrypt": "^5.0.0",
"dateformat": "^3.0.3",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-xo": "^0.29.1",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"winston": "^2.4.3"
}
}