This repository was archived by the owner on Oct 2, 2025. It is now read-only.
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
54 lines (54 loc) · 1.64 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.64 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
{
"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",
"compile": "babel . --out-dir compiled --presets=es2015,react --ignore=node_modules,compiled,migrations,spec,server,seeds --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.8",
"knex-migrate": "^1.2.0",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"morgan": "^1.8.1",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"pg": "^6.1.5",
"query-string": "^4.3.2",
"react": "^15.4.2",
"react-bootstrap": "^0.30.8",
"react-dom": "^15.4.2",
"react-star-rating-component": "^1.2.4",
"react-stars": "^2.1.0",
"tether": "^1.4.0",
"whatwg-fetch": "^2.0.3"
}
}