This repository was archived by the owner on Sep 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.82 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.82 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
{
"name": "@self-buy/api",
"version": "1.0.0",
"main": "src/index.js",
"repository": "git@gitlab.com:self-buy/api.git",
"author": "Ynov Ydays",
"license": "MIT",
"dependencies": {
"@types/cron": "^1.7.1",
"@types/stripe": "^7.13.22",
"bcrypt": "^3.0.7",
"cors": "^2.8.5",
"cron": "^1.8.2",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"handlebars": "^4.7.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.8.9",
"morgan": "^1.9.1",
"morgan-body": "^2.4.8",
"nodemailer": "^6.4.2",
"stripe": "^8.29.0",
"ts-mongoose": "^0.0.21"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/crypto-js": "^3.1.43",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/handlebars": "^4.1.0",
"@types/jsonwebtoken": "^8.3.6",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.5.41",
"@types/morgan": "^1.7.37",
"@types/node": "^13.1.8",
"@types/nodemailer": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"typescript": "^3.7.5"
},
"scripts": {
"start": "node ./build/index.js",
"dev": "nodemon src/index.js localhost",
"deploy": "git push heroku master",
"build": "./node_modules/.bin/tsc",
"build:dev": "./node_modules/.bin/tsc --watch",
"start:dev": "nodemon ./build/index.js",
"start:doc": "./node_modules/.bin/drakov -f documentation.md",
"lint": "./node_modules/.bin/eslint src/**/*.ts --color",
"lint:fix": "./node_modules/.bin/eslint src/**/*.ts --fix"
}
}