-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1011 Bytes
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
{
"name": "core",
"version": "1.0.8",
"description": "Core",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "MosaroLtda",
"scripts": {
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --ignore-watch=node_modules --ignore-watch=dist --ignore-watch=docker --ignore-watch=.github --ignore-watch=.vscode --no-notify --clear dev/index.ts",
"prepublish": "tsc"
},
"devDependencies": {
"@types/node": "^16.4.2",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"@types/express": "^4.17.13",
"express": "^4.17.2",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.10.1"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"fast-glob": "^3.2.7"
}
}