This repository was archived by the owner on Nov 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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
42
43
44
45
46
47
48
49
{
"name": "api-lab",
"version": "3.0.3",
"description": "Node.js sample app suitable for cloud containers",
"main": "server.js",
"dependencies": {
"@types/express": "^4.17.13",
"@types/geoip-lite": "^1.4.1",
"@types/morgan": "^1.9.3",
"@types/node": "17.0.5",
"@types/swagger-ui-express": "^4.1.3",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"geoip-lite": "^1.4.3",
"mongoose": "^6.2.1",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.3.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.5.1",
"mongodb-memory-server": "^8.3.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3"
},
"engines": {
"node": "16.x"
},
"scripts": {
"build-ts": "tsc",
"clear-dist-dir": "rm -rf dist/[^.]*",
"cp-static-dirs": "cp -r ./package.json ./public ./views ./dist",
"serve": "node dist/server.js",
"start": "npm run build-ts && npm run cp-static-dirs && npm run serve",
"test": "jest",
"testCI": "jest --testPathIgnorePatterns .*Integration.*"
},
"repository": {
"type": "git",
"url": "https://github.com/Asta1986/node-ex-ts"
},
"author": "Asta1986 <psljp@protonmail.com> (https://maybelambda.cf)",
"license": "CC-BY-1.0",
"bugs": {
"url": "https://github.com/Asta1986/node-ex-ts/issues"
},
"homepage": "https://l086.herokuapp.com"
}