forked from Notebird-App/breeze-chms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.46 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.46 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
{
"name": "clc-back",
"version": "1.0.0",
"description": "Provides convenient access to the Breeze REST API - https://app.breezechms.com/api.",
"keywords": [
"breeze",
"chms",
"Koa",
"Node"
],
"scripts": {
"test": "jest --config jestconfig.json",
"test-watch": "jest --config jestconfig.json --watch",
"test:jest": "jest --config jestconfig.json --runInBand",
"test:jest-u": "npm run test:jest -- -u",
"ts-start": "DEBUG=CLC-back:* nodemon --trace-deprecation build/index.js",
"ts-watch": "tsc -w",
"watch": "tsc --watch",
"clean": "rm -rf build",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"start:debug": "rm -rf build && tsc && npm-run-all -p ts-start ts-watch",
"prepublishOnly": "npm run test",
"start": "node build/index.js",
"dev": "nodemon index.js",
"rmrf": "rm -rf build && rm -rf CollegeLutheran && rm -rf coverage",
"build:front": "./postinstallFront.sh && rm -rf ./CollegeLutheran/src && rm -rf ./CollegeLutheran/test",
"postinstall": "npm run rmrf && tsc && npm run build:front"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/WebJamApps/CLC-back.git"
},
"author": "WebJamApps",
"license": "MIT",
"private": false,
"engines": {
"node": ">=18.17.1 <19",
"npm": ">=9.5.1 <10"
},
"engineStrict": true,
"dependencies": {
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"@tsconfig/node18": "^18.2.1",
"@types/debug": "^4.1.8",
"@types/koa": "^2.13.8",
"@types/koa__cors": "^4.0.0",
"@types/koa__router": "^12.0.0",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-ejs": "^4.3.0",
"@types/koa-morgan": "^1.0.5",
"@types/koa-sslify": "^4.0.3",
"@types/koa-static": "^4.0.2",
"axios": "^1.4.0",
"breeze-chms": "^0.2.6",
"csvtojson": "^2.0.10",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-ejs": "^4.3.0",
"koa-helmet": "^7.0.2",
"koa-morgan": "^1.0.1",
"koa-send": "^5.0.1",
"koa-sslify": "^5.0.1",
"koa-static": "^5.0.0",
"mongoose": "^7.4.4",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"jest-to-match-shape-of": "^1.3.2",
"nodemon": "^2.0.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.2",
"ts-jest": "^29.1.1"
}
}