-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "fetchicles-api",
"version": "1.0.0",
"main": "./dist/index.js",
"author": "Matheus Souza",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --transpile-only --respawn --ignore-watch node_modules -r tsconfig-paths/register ./src/index.ts",
"build": "rimraf ./dist && yarn tsc && tscpaths -p tsconfig.json -s ./src -o ./dist",
"start": "node ./dist/index.js",
"postinstall": "nvmrc-check --node $(cat .nvmrc)",
"lint": "tsc --noEmit && eslint . --ext .ts,.js,.json",
"lint-and-fix": "eslint . --ext .ts,.js,.json --fix",
"prettier-format": "pretty-quick --pattern '**/*.{json,js,ts,md}' --verbose",
"tscheck": "tsc",
"prepare": "husky install"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.1",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nvmrc-check": "^1.0.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"tscpaths": "^0.0.9",
"typescript": "^4.8.4"
},
"private": true
}