-
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.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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": "snooty-data-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf ./dist/ && tsc",
"dev": "nodemon src/index.ts",
"format": "npm run prettier -- --check",
"format:fix": "npm run prettier -- --write",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prettier": "prettier '**/*.{js,jsx,ts,tsx,json,md}'",
"start": "node ./dist/index.js",
"test": "jest"
},
"engines": {
"node": "^18",
"npm": "8.*"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongodb": "^5.2.0",
"stream-json": "^1.8.0",
"winston": "^3.9.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/stream-json": "^1.7.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"mongodb-memory-server": "^8.12.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}