forked from MudCats/echoes
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "echoes",
"version": "1.0.0",
"description": "A listening journal app build on React, PostgreSQL, Express, and Node.",
"main": "index.js",
"scripts": {
"test": "mocha",
"watch": "babel . --watch --out-dir compiled --presets=es2015,react --ignore=node_modules,compiled --source-maps inline",
"start": "nodemon server/server.js --ignore client/ --ignore compiled/"
},
"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-nodejs": "0.0.3",
"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",
"express-session": "^1.15.1",
"jquery": "^3.1.1",
"knex": "^0.12.7",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"morgan": "^1.8.1",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^6.1.4",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router-dom": "^4.0.0"
}
}