-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 933 Bytes
/
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
{
"name": "neoway-import",
"version": "1.0.0",
"main": "src/index.ts",
"repository": "https://github.com/kennedy-f/neoway-import",
"author": "Kennedy Ribeiro",
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node src/index.ts",
"debug": "nodemon --exec 'node --inspect=0.0.0.0:9229 --require ts-node/register src/index.ts'",
"import": "ts-node src/index.ts"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"typeorm": "^0.3.10"
}
}