-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
40
41
42
{
"name": "nodejs-frist-api",
"version": "1.0.0",
"description": "A RESTful API created with node and Typescript ",
"main": "index.js",
"scripts": {
"dev": "nodemon src/server.ts",
"build": "",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MailsonD/NodeJs-Frist-Api.git"
},
"author": "MailsonD",
"license": "ISC",
"bugs": {
"url": "https://github.com/MailsonD/NodeJs-Frist-Api/issues"
},
"homepage": "https://github.com/MailsonD/NodeJs-Frist-Api#readme",
"dependencies": {},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/mongoose": "^5.5.23",
"@types/node": "^12.11.7",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"cors": "^2.8.5",
"eslint": "^6.6.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.17.1",
"mongoose": "^5.7.7",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"sucrase": "^3.10.1",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}