-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 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": "gro-city-backend",
"version": "1.0.0",
"description": "",
"main": "knexfile.js",
"scripts": {
"dev-server": "nodemon src/app.js",
"lint": "eslint src/",
"lint-watch": "esw src/ -w",
"knex": "knex",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"dev": "run-all \"npm run dev-server\"",
"start": "node src/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easterjd/gro-city-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/easterjd/gro-city-backend/issues"
},
"homepage": "https://github.com/easterjd/gro-city-backend#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"knex": "^0.15.2",
"morgan": "^1.9.0",
"pg": "^7.4.3",
"pluralize": "^7.0.0"
},
"devDependencies": {
"dotenv": "^6.0.0",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-watch": "^4.0.2",
"nodemon": "^1.18.3",
"run-all": "^1.0.1"
}
}