generated from jlgriff/express-typescript-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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": "express-endpoint-testing",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "tsc",
"test": "docker ps > /dev/null && jest --config jestconfig.json",
"start": "npm run build && ts-node build/server.js",
"dev": "npx nodemon ./src/server.ts",
"copy-env:local": "cp -n .env.local .env || true"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"graphql": "^15.3.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/jest": "^27.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.sortby": "^4.7.7",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.35",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"lodash.isequal": "^4.5.0",
"lodash.sortby": "^4.7.0",
"nodemon": "^2.0.16",
"ioredis":"^5.2.2",
"supertest": "^6.2.4",
"testcontainers": "^8.12.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}