-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "e-commerce-server",
"node": "12.x",
"version": "0.0.1",
"description": "API Server for the e-commerce site",
"main": "dist/index.js",
"scripts": {
"debug-build": "babel ./src -d ./dist --source-maps --retain-lines ",
"dev": "nodemon --exec babel-node src/index.js --trace-warnings",
"build": "babel src -d dist",
"start": "node dist/index.js -p $PORT",
"test": "standard && jest",
"grab-data": "babel-node data/grabber.js",
"db:create": "docker build . -t mongodb_dev",
"db:run": "docker run -p 27018:27017 --name mongodb_dev_instance -i -t mongodb_dev",
"db:seed": "babel-node src/mocks/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georgyKurian/e-commerce.git"
},
"keywords": [
"e-commerce"
],
"author": "Georgi Kurian",
"license": "ISC",
"bugs": {
"url": "https://github.com/georgyKurian/e-commerce/issues"
},
"homepage": "https://github.com/georgyKurian/e-commerce#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.5",
"mongoose-hidden": "^1.9.0",
"response-time": "^2.3.2",
"stripe": "^8.96.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-async-generator-functions": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-sent": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-syntax-top-level-await": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"axios": "^0.20.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"babel-preset-env": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^4.1.0",
"jest": "^25.5.4",
"nodemon": "^2.0.4",
"prettier": "^1.19.1",
"regenerator-runtime": "^0.13.7",
"standard": "^14.3.3"
}
}