This repository was archived by the owner on Dec 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.07 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "break-point-back",
"version": "0.5.0",
"description": "changeInChrist-API",
"main": "index.js",
"engines": {
"node": ">=16.16.0 <19",
"npm": ">=8.13.2 <9"
},
"files": [
"lib/",
"model/",
"auth/",
"config.js",
"routes.js"
],
"license": "MIT",
"scripts": {
"rmrf": "rm -rf build && rm -rf breakpointministries && rm -rf coverage",
"start:debug": "rm -rf build && tsc && npm-run-all -p ts-start ts-watch",
"ts-watch": "tsc -w",
"cc": "codeclimate analyze -f html > codeclimate.html",
"ts-start": "DEBUG=break-point-back:* nodemon build/index.js",
"build:front": "./postinstallC-I-C.sh && rm -rf ./breakpointministries/src && rm -rf ./breakpointministries/test",
"postinstall": "npm run rmrf && tsc && npm run build:front",
"rebuild:front": "./postinstallC-I-C.sh && npm run build:prod",
"build:prod": "(cd breakpointministries || exit; npm start -- build)",
"start": "node build/index.js",
"cleaninstall": "rm -rf yarn.lock && rm -rf node_modules && npm cache clean --force && npm install",
"node:debug": "node --inspect-brk index.js",
"test": "eslint ./src && rm -rf coverage && npm run test:jest",
"test:lint": "eslint ./src --fix",
"test:local": "npm run test:lint && rm -rf coverage && npm run test:jest && npm run cc",
"test:jest": "jest --no-cache --config jest.config.json --runInBand --detectOpenHandles --forceExit"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/WebJamApps/break-point-back.git"
},
"author": "HandlersAndKickers <>",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.7",
"@types/express-sslify": "^1.2.1",
"@types/morgan": "^1.9.1",
"@types/superagent": "^4.1.8",
"@types/supports-color": "^5.3.0",
"bcryptjs": "latest",
"body-parser": "latest",
"cors": "latest",
"cross-env": "latest",
"csvtojson": "^2.0.10",
"debug": "latest",
"dotenv": "latest",
"express": "latest",
"express-sslify": "latest",
"helmet": "latest",
"jwt-simple": "latest",
"moment": "^2.29.4",
"mongoose": "^6.5.1",
"morgan": "latest",
"superagent": "latest",
"supports-color": "^7.1.0",
"typescript": "latest"
},
"devDependencies": {
"@types/jest": "latest",
"@types/supertest": "latest",
"@types/supports-color": "^5.3.0",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-airbnb": "latest",
"eslint-config-airbnb-typescript": "latest",
"eslint-plugin-es": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-json": "latest",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"eslint-plugin-security": "latest",
"jest": "latest",
"nodemon": "^2.0.19",
"npm-run-all": "latest",
"supertest": "latest",
"ts-jest": "latest"
}
}