-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-next.git",
"directory": "examples/todo-jwt"
},
"engines": {
"node": "16 || 18 || 20"
},
"scripts": {
"build": "tsc --outDir dist",
"build:watch": "tsc --watch",
"clean": "node infrastructure/clean.js",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "prettier \"**/*.ts\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"test": "mocha \"dist/__tests__/**/*.js\"",
"test:dev": "mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"verify": "npm pack && tree package && npm run clean",
"premigrate": "npm run build",
"rebuild": "npm run clean && npm run build",
"prestart": "npm run rebuild",
"start": "node dist/launch.js"
},
"dependencies": {
"axios": "^1.6.5",
"cheerio": "^1.0.0-rc.12",
"config": "^3.3.10",
"convert-csv-to-json": "^2.0.0",
"csv": "^6.3.6",
"glob": "^10.3.10",
"json-2-csv": "^5.0.1",
"node-async-exec": "^1.2.0",
"node-fetch": "^3.3.2",
"underscore": "^1.13.6",
"zip-local": "^0.3.5"
},
"devDependencies": {
"@types/node": "^20.11.6",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}