-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.47 KB
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
{
"name": "server",
"version": "1.0.0",
"description": "Scratch-N-Map",
"main": "app.js",
"scripts": {
"test": "jest --watch --verbose",
"start": "nodemon app.js",
"heroku-postbuild": "cd client && npm install && npm run build && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/Labs_7_1_Map.git"
},
"author": "Nikhil Kamineni, David Morales, Nalee Riddell, Edward Manda, Sneha Thadani",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/Labs_7_1_Map/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/Labs_7_1_Map#readme",
"devDependencies": {
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-node": "^7.0.1",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"prettier": "1.14.3",
"supertest": "^3.3.0"
},
"dependencies": {
"argon2": "^0.19.3",
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"helmet": "^3.14.0",
"i": "^0.3.6",
"jsonwebtoken": "^8.3.0",
"mongodb-memory-server": "^2.6.0",
"mongoose": "^5.3.4",
"morgan": "^1.9.1",
"node-gyp": "^3.8.0",
"npm": "^6.4.1",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/client"
]
},
"engines": {
"node": "10.12.x",
"npm": "6.4.x"
}
}