-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.36 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "sample-api-node-express-mongo",
"version": "1.0.0",
"description": "Example ToDo REST API using Node.js, Express, and MongoDB",
"author": "Matthew Warman (https://leanstacks.com)",
"scripts": {
"build:clean": "rimraf dist",
"build:compile": "tsc",
"build": "run-s build:clean build:compile",
"docker:build": "docker build . -t leanstacks/todo-service",
"docker:remove": "docker container rm todo-service",
"docker:run": "docker container run --publish 3001:3001 --name todo-service leanstacks/todo-service",
"docker:run:detached": "docker container run --publish 3001:3001 --name todo-service --detach leanstacks/todo-service",
"docker:stop": "docker container stop todo-service",
"lint:eslint": "eslint src/**/*.ts",
"lint": "run-s lint:eslint",
"start:build": "tsc -w",
"start:run": "nodemon dist/index.js",
"start": "run-p start:**",
"test:coverage": "jest --coverage",
"test": "jest"
},
"repository": "github:leanstacks/sample-api-node-express-mongo",
"license": "MIT",
"dependencies": {
"bcrypt": "5.0.1",
"cors": "2.8.5",
"dayjs": "1.11.5",
"dotenv": "16.0.2",
"dotenv-expand": "9.0.0",
"express": "4.18.1",
"helmet": "6.0.0",
"joi": "17.6.0",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"mongodb": "4.9.0",
"mongodb-memory-server": "8.9.0",
"mongoose": "6.5.4",
"morgan": "1.10.0",
"passport": "0.6.0",
"passport-anonymous": "1.0.1",
"passport-http": "0.3.0",
"passport-jwt": "4.0.0",
"winston": "3.8.1"
},
"devDependencies": {
"@types/bcrypt": "5.0.0",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jest": "29.0.0",
"@types/jsonwebtoken": "8.5.9",
"@types/lodash": "4.14.184",
"@types/morgan": "1.9.3",
"@types/node": "18.7.14",
"@types/passport": "1.0.10",
"@types/passport-anonymous": "1.0.3",
"@types/passport-http": "0.3.9",
"@types/passport-jwt": "3.0.6",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"eslint": "8.23.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"jest": "29.0.1",
"nodemon": "2.0.19",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"supertest": "6.2.4",
"ts-jest": "28.0.8",
"typescript": "4.8.2"
}
}