-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "yellowstone",
"version": "1.0.0",
"description": "server side application for bryce",
"engines": {
"node": "12.13.1"
},
"proxy": "localhost:8000",
"main": "index.js",
"repository": "https://github.com/sean-connor/yellowstone",
"author": "Sean Connor <connorseanp@gmail.com>",
"license": "MIT",
"scripts": {
"start:dev": "nodemon ./bin/www",
"debug": "nodemon --inspect ./bin/www",
"start": "node ./bin/www",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.4",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"express-generator": "^4.16.0",
"lodash": "^4.17.15",
"pg": "^8.6.0",
"pg-hstore": "^2.3.2",
"postgraphql": "^3.5.6",
"sequelize": "^4.35.0",
"sequelize-cli": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"husky": "^0.14.3",
"nodemon": "^1.17.1",
"prettier": "1.11.0",
"prettier-eslint": "^8.8.1",
"typescript": "^3.5.3"
}
}