-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.75 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
{
"name": "backend",
"version": "1.0.0",
"description": "Backend for ClassDojo",
"main": "local.ts",
"scripts": {
"start": "nodemon local.ts",
"test": "jest --runInBand",
"prepare": "husky install"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix"
],
"*.ts": "eslint --cache --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/class-dojo/backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/class-dojo/backend/issues"
},
"homepage": "https://github.com/class-dojo/backend#readme",
"dependencies": {
"@vendia/serverless-express": "^4.8.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-openapi-validator": "^4.13.7",
"js-yaml": "^4.1.0",
"node-dependency-injection": "^2.7.3"
},
"devDependencies": {
"swagger-ui-express": "^4.3.0",
"@types/swagger-ui-express": "^4.1.3",
"@types/aws-lambda": "^8.10.92",
"@types/aws-serverless-express": "^3.3.5",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/js-yaml": "^4.0.2",
"@types/node": "^14.18.16",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"aws-sdk": "^2.952.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.0.6",
"jest-junit": "^13.0.0",
"lint-staged": "^12.3.7",
"mock-express-request": "^0.2.2",
"mock-express-response": "^0.3.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"serverless": "^2.72.2",
"serverless-plugin-typescript": "^2.1.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}