-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.61 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
55
56
57
58
59
60
61
62
{
"name": "mock-shop",
"version": "1.0.0",
"description": "Mock Shop is a simple backend API for a shopping outlet",
"main": "app.js",
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"build-server": "babel src --out-dir dist",
"build": "npm run clean && npm run build-server",
"start:dev": "nodemon ./src/app.js --exec babel-node",
"start": "node dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fegoworks/mock-shop.git"
},
"keywords": [
"e-commerce",
"cart"
],
"author": "Edafe Oghenefego",
"license": "MIT",
"bugs": {
"url": "https://github.com/fegoworks/mock-shop/issues"
},
"homepage": "https://github.com/fegoworks/mock-shop#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"mocha": "^7.0.1",
"supertest": "^4.0.2"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@hapi/joi": "^17.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.19.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"pg": "^7.18.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.4",
"sequelize-cli": "^5.5.1",
"uuidv4": "^6.0.2"
},
"engines": {
"node": "10.x"
}
}