forked from Greenstand/treetracker-admin-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.56 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "treetracker-admin-api",
"version": "2.14.2",
"private": true,
"description": "Treetracker Admin API Server",
"keywords": [
"loopback-application",
"loopback"
],
"main": "dist/index.js",
"scripts": {
"build": "lb-tsc --allowJs -d false",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist *.tsbuildinfo",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "prettier src/ || true",
"prettier:check": "prettier src/ --list-different || true",
"prettier:fix": "prettier src/ --write || true",
"eslint": "eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"posttest": "echo 'Finished running all tests.'",
"migrate": "node ./dist/migrate",
"prestart": "npm run clean && npm run build",
"start": "NODE_ENV=development node .",
"start:debug": "NODE_ENV=development DEBUG=loopback:*,express:* node --inspect .",
"startTest": "NODE_ENV=test npm run build && NODE_ENV=test DEBUG=loopback:* node ./dist/indexTest.js",
"prepublishOnly": "npm run test",
"test": "NODE_ENV=test jest --watchAll --runInBand",
"test:ci": "NODE_ENV=test jest --ci",
"test:debug": "NODE_ENV=test DEBUG=loopback:*,express:* jest --no-cache --watchAll --runInBand",
"watch": "onchange 'src/controllers/**/*.ts' 'src/models/**/*.ts' 'src/repositories/**/*.ts' -- npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Greenstand/treetracker-admin.git"
},
"bugs": {
"url": "https://github.com/Greenstand/treetracker-admin/issues"
},
"homepage": "https://github.com/Greenstand/treetracker-admin#readme",
"author": "",
"license": "ISC",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^1.4.3",
"@loopback/context": "^1.20.1",
"@loopback/core": "^1.8.4",
"@loopback/openapi-v3": "^1.6.4",
"@loopback/repository": "^1.8.1",
"@loopback/rest": "^1.16.2",
"@loopback/rest-explorer": "^1.2.4",
"assert": "^2.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"expect": "^26.1.0",
"expect-runtime": "^0.7.0",
"express-list-endpoints": "^5.0.0",
"generate-password": "^1.5.1",
"jsonwebtoken": "^8.5.1",
"loglevel": "^1.6.8",
"loopback-connector-postgresql": "^3.6.1",
"amqplib": "^0.6.0",
"rascal": "^12.0.1"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@loopback/build": "^2.0.2",
"@loopback/eslint-config": "^1.1.2",
"@loopback/testlab": "^1.6.2",
"@types/jest": "^26.0.7",
"@types/node": "^10.14.9",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-jest": "^26.1.0",
"eslint": "^7.9.0",
"eslint-config-loopback": "^13.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-plugin": "^2.1.0",
"eslint-plugin-mocha": "^5.3.0",
"husky": "^4.3.5",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"onchange": "^7.0.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"supertest": "^4.0.2",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts,js",
"exec": "npm start"
},
"engines": {
"node": ">= 12 < 13"
}
}