-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
{
"name": "library-browser",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"start": "ts-node src/app-scripts/index.ts",
"start:debug": "nodemon --inspect=5861 ./src/app-scripts/index.ts",
"start:debug:watch": "npm run start:debug",
"cli": "ts-node src/app-scripts/cli.ts",
"cli:built": "node ts-built/app-scripts/cli.js",
"clean": "if [ -d ts-built ]; then rm -r ts-built; fi;",
"lint": "eslint src/ --ext .ts",
"build": "npm run clean && tsc",
"run:build": "node ts-built/app-scripts/index.js",
"package": "node ./utility-scripts/package.js",
"build:package": "npm run build && npm run package"
},
"author": "Rederly",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@prisma/cli": "^2.14.0",
"@types/express": "^4.17.9",
"@types/lodash": "^4.14.167",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.20",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"acorn": "^8.0.4",
"archiver": "^5.2.0",
"eslint": "^7.17.0",
"fs-extra": "^9.0.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts"
],
"watch": [
"src"
],
"ext": "ts",
"execMap": {
"ts": "node --require ts-node/register"
},
"signal": "SIGINT"
},
"dependencies": {
"@prisma/client": "^2.14.0",
"@types/boom": "^7.3.0",
"boom": "^7.3.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"express": "^4.17.1",
"lodash": "^4.17.20",
"morgan": "^1.10.0",
"winston": "^3.3.3"
}
}