-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "echoes",
"version": "1.0.0",
"description": "A listening journal app build on React, PostgreSQL, Express, and Node.",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "nodemon server/server.js | babel . --watch --out-dir compiled --presets=es2015,react --ignore=node_modules,compiled --source-maps inline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MudCats/echoes.git"
},
"author": "Christian Arredondo, Tyler Holzer, Megan Rabuse, and Daniel Ricaud",
"license": "ISC",
"bugs": {
"url": "https://github.com/MudCats/echoes/issues"
},
"homepage": "https://github.com/MudCats/echoes#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-react": "^6.23.0",
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"dependencies": {
"babel-preset-es2015": "^6.22.0",
"bcrypt": "^1.0.2",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"bootstrap": "^3.3.7",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"jquery": "^3.1.1",
"knex": "^0.12.7",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"morgan": "^1.8.1",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"pg": "^6.1.4",
"react": "^15.4.2",
"react-dom": "^15.4.2"
}
}