-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.68 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
{
"name": "api-boilerplate",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:theandersonn/api-boilerplate.git",
"author": "theandersonn <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node dist/main/server.js",
"build": "rimraf dist && tsc",
"dev": "sucrase-node src/main/server.ts",
"lint": "eslint src --max-warnings=0",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "yarn test --watch -c jest-unit-config.js",
"test:integration": "yarn test --watch -c jest-integration-config.js",
"test:staged": "yarn test --findRelatedTests",
"test:ci": "yarn test --coverage",
"test:clear": "jest --clearCache"
},
"dependencies": {
"express": "^4.18.2",
"mongodb": "^4.14.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.6",
"@types/express": "^4.17.17",
"@types/jest": "^28.1.7",
"@types/mongodb": "^4.0.7",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.2.1",
"git-commit-msg-linter": "^4.7.4",
"husky": "^8.0.3",
"jest": "^28.1.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"sucrase": "^3.29.0",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"typescript": "^4.9.5"
}
}