-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 855 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 855 Bytes
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
{
"name": "github-actions",
"version": "1.0.0",
"description": "repositorio para armazenar estudos sobre github actions",
"main": "src/server.ts",
"scripts": {
"build": "tsc --build ./tsconfig.json",
"start:dev": "ts-node-dev --respawn --transpile-only --clear --ignore-watch node_modules --no-notify src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flavionobre11/github-actions.git"
},
"author": "flavio nobre",
"license": "ISC",
"bugs": {
"url": "https://github.com/flavionobre11/github-actions/issues"
},
"homepage": "https://github.com/flavionobre11/github-actions#readme",
"dependencies": {
"express": "^4.17.3"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2"
}
}