This repository has been archived by the owner on Jun 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
{
"name": "mappypals",
"version": "1.0.0",
"description": "track your friends abroad",
"main": "server.js",
"scripts": {
"clean": "rm -rf build && mkdir build",
"build-babel": "babel -d ./build ./src -s",
"build": "npm run clean && npm run build-babel",
"start": "npm run build && node ./build/server.js",
"postinstall": "npm audit fix",
"dev:start": "nodemon --exec babel-node ./src/server.js",
"dev:lint": "eslint --fix .",
"dev:format": "prettier --write \"./**/*.js\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zerotomastery/mappypals.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zerotomastery/mappypals/issues"
},
"homepage": "https://github.com/zerotomastery/mappypals#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.4.5",
"@babel/runtime-corejs2": "^7.5.5",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.18.10",
"prettier": "^1.17.1"
},
"dependencies": {
"async": "^2.6.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"googleapis": "^39.2.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.1.13",
"mongoose": "^5.7.5",
"nodemailer": "^6.1.1"
}
}