-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "growdev-first-repo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"dev": "ts-node-dev ./src/index.ts",
"build": "npx tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ramos-Guilherme/growdev-first-repo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ramos-Guilherme/growdev-first-repo/issues"
},
"homepage": "https://github.com/Ramos-Guilherme/growdev-first-repo#readme",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/line-reader": "^0.0.34",
"@types/md5": "^2.3.1",
"@types/node": "^16.11.6",
"axios": "^0.24.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"line-reader": "^0.4.0",
"md5": "^2.3.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/dotenv": "^8.2.0"
}
}