-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 952 Bytes
/
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
{
"name": "fundamentosnodejest-ts",
"version": "1.0.0",
"description": "Fundamentos de Node.js e Jest",
"main": "index.js",
"type": "commonjs",
"scripts": {
"build": "rm -rf ./build && tsc",
"start": "node build/index.js",
"dev": "ts-node-dev src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasrmagalhaes/fundamentosNodeJest-ts.git"
},
"keywords": [],
"author": "Lucas Magalhães",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucasrmagalhaes/fundamentosNodeJest-ts/issues"
},
"homepage": "https://github.com/lucasrmagalhaes/fundamentosNodeJest-ts#readme",
"dependencies": {
"express": "^4.18.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.2",
"@types/node": "^18.0.0",
"jest": "^28.1.1",
"ts-jest": "^28.0.5"
}
}