-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 952 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 952 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
{
"name": "node-typescript",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/apfjunior/node-typescript.git",
"author": "Antonino Praxedes <antonino.praxedes@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev:server": "ts-node-dev --transpileOnly --inspect --ignore-watch node_modules src/server.ts"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"date-fns": "^2.14.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"express": "^4.17.1",
"uuidv4": "^6.0.8"
},
"devDependencies": {
"@types/express": "^4.17.6",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
}
}