-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.6 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
{
"name": "shopsocial",
"version": "1.0.0",
"description": "### Problem statement",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test sequelize db:migrate:undo:all && NODE_ENV=test sequelize db:migrate && NODE_ENV=test jest --coverage --forceExit --runInBand",
"start": "NODE_ENV=development sequelize db:migrate:undo:all && NODE_ENV=development sequelize db:migrate && NODE_ENV=development sequelize db:seed:all && NODE_ENV=development node src/server.js",
"seed": "NODE_ENV=development sequelize db:seed:undo:all && NODE_ENV=development sequelize db:seed:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechUniv2018/ShopSocial.git"
},
"author": "mahesh_h_p, aditi_verma, aakash_verma, sahil_balodi, anand_shanker",
"license": "ISC",
"bugs": {
"url": "https://github.com/TechUniv2018/ShopSocial/issues"
},
"homepage": "https://github.com/TechUniv2018/ShopSocial#readme",
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.2.2",
"nodemon": "^1.17.2",
"sequelize-cli": "^3.2.0"
},
"dependencies": {
"es6-promise": "^4.2.4",
"hapi": "^16.6.2",
"hapi-auth-jwt2": "^7.4.1",
"joi": "^13.1.2",
"jsonwebtoken": "^8.1.1",
"password-hash": "^1.2.2",
"pg": "^6.4.2",
"request-promise": "^4.2.2",
"sequelize": "^4.33.4",
"socket-io": "^1.0.0",
"socket.io": "^2.0.4",
"supertest": "^3.0.0"
}
}