-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.61 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "bikoschool2023-api-starter",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "run-p -l start:*",
"start:type-check": "tsc --noEmit",
"start:run-babel-node": "babel-node --extensions \".ts\" src/index.ts",
"dev": "run-p -l dev:*",
"dev:type-check": "tsc --noEmit --watch",
"dev:run-babel-node": "nodemon --exec babel-node --extensions \".ts\" src/index.ts",
"build": "run-s -l build:*",
"build:type-check": "tsc --noEmit",
"build:clean": "rimraf dist",
"build:run-babel-node": "babel src -d dist --ignore=\"./src/**/*.spec.ts\" --extensions \".ts\"",
"test": "jest --colors",
"test:watch": "jest --watch --colors"
},
"dependencies": {
"express": "^4.18.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/node": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/morgan": "^1.9.4",
"@types/node": "^20.2.5",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"typescript": "^5.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Biko-School/bikoschool2023-api-starter.git"
},
"keywords": [],
"author": "Carlos Martínez",
"license": "ISC",
"bugs": {
"url": "https://github.com/Biko-School/bikoschool2023-api-starter/issues"
},
"homepage": "https://github.com/Biko-School/bikoschool2023-api-starter#readme"
}