-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.09 KB
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
{
"name": "LocationJs",
"version": "1.0.0",
"description": "Location project with JavaScript and TypeScript",
"main": "./src/index.js",
"repository": "https://github.com/dansf/Web--LocationJs.git",
"author": "Daniel Silva <dansf.3009@gmail.com>",
"license": "MIT",
"type": "commonjs",
"scripts": {
"start": "node -r ts-node/register ./src/index.ts",
"start:watch": "nodemon --config",
"build": "tsc"
},
"dependencies": {
"@types/nedb": "^1.8.12",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.2.0",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"nedb": "^1.8.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"nodemon": "^2.0.19",
"prettier": "^2.6.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.14.0",
"typescript": "^4.6.2"
}
}