-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 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
{
"name": "turing-ecommerce-project",
"version": "2.0.0",
"description": "REST API for turing ecommerce website",
"main": "index.js",
"scripts": {
"start": "npm run build && node ./dist/index.js",
"dev": "nodemon index.js --exec babel-node",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"clean:build": "rimraf dist/"
},
"engines": {
"node": "8.11.4"
},
"keywords": [
"ecommerce"
],
"author": "Adeoye Peter",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"dotenv": "^6.2.0",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"express-urlrewrite": "^1.2.0",
"jsonwebtoken": "^8.4.0",
"method-override": "^3.0.0",
"morgan": "^1.9.1",
"mysql": "^2.16.0",
"mysql2": "^1.6.5",
"nodemailer": "^5.1.1",
"pg": "^7.8.1",
"pg-hstore": "^2.3.2",
"redis": "^2.8.0",
"request": "^2.88.0",
"rimraf": "^2.6.3",
"sequelize": "^5.19.8",
"sequelize-cli": "^5.4.0",
"stripe": "^6.25.1",
"validatorjs": "^3.15.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.2",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"nodemon": "^1.18.10"
}
}