-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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
{
"name": "typescript-tutorial",
"version": "2.0.0",
"description": "Quickstart in Couchbase with Type script JS and Express",
"main": "src/server.ts",
"scripts": {
"test": "env-cmd -f ./config/test.env jest --verbose --runInBand",
"start": "npx env-cmd -f ./config/dev.env npx ts-node src/server.ts",
"testGA": "jest --verbose --runInBand"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/couchbase": "^2.4.9",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"env-cmd": "^10.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.2",
"supertest": "^6.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"cors": "^2.8.5",
"couchbase": "4.2.8",
"express": "^4.21.1",
"swagger-ui-express": "^4.6.2",
"yaml": "^2.3.4"
}
}