-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/desafiosdev/backend.git"
},
"scripts": {
"start": "node dist/index.js",
"dev": "./node_modules/.bin/ts-node src/index.ts",
"build": "rm -rf dist && ./node_modules/.bin/tsc --outDir dist --module commonjs --target es5 --sourceMap"
},
"keywords": [],
"authors": [{
"name": "Tadeu",
"email": "tadeufbarbosa@gmail.com"
}],
"license": "ISC",
"bugs": {
"url": "https://github.com/desafiosdev/backend/issues"
},
"homepage": "https://github.com/desafiosdev/backend#readme",
"dependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"bcrypt": "^5.0.1",
"crypto": "^1.0.1",
"express": "^4.17.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.18",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}