forked from lighthouse-labs/tweeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 984 Bytes
/
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
{
"name": "tweeter",
"version": "1.0.0",
"description": "A twitter clone by Lighthouse Labs for web bootcamp students to learn front-end dev skillz",
"private": true,
"main": "server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./server/index.js",
"local": "nodemon --watch server -e js server/index.js"
},
"author": "Lighthouse Labs",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"chance": "^1.0.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"md5": "^2.1.0",
"moment": "^2.29.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^1.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ej2brown/tweeter-1.git"
},
"bugs": {
"url": "https://github.com/ej2brown/tweeter-1/issues"
},
"homepage": "https://github.com/ej2brown/tweeter-1#readme"
}