-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.89 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
{
"name": "nodejs-api",
"version": "1.0.0",
"description": "Typescript Nodejs Api",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"start": "npm run build && node dist/src/index.js",
"start:local": "ts-node-dev src/index.ts",
"style:check": "prettier --check src/**/*.ts test/**/*.ts",
"style:fix": "prettier --write src/**/*.ts test/**/*.ts",
"test": "npm run lint && npm run style:check && npm run test:unit && npm run test:functional",
"test:functional": "jest --projects ./test --runInBand",
"test:unit": "jest"
},
"engines": {
"node": ">=18.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HellpMe/API-StormGlass.git"
},
"keywords": [
"Typescript",
"Api",
"Nodejs",
"Mongodb",
"Jest"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HellpMe/API-StormGlass/issues"
},
"homepage": "https://github.com/HellpMe/API-StormGlass#README",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/config": "^0.0.39",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^9.0.0",
"@types/module-alias": "^2.0.1",
"@types/node": "^14.17.12",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"@overnightjs/core": "^1.7.6",
"axios": "^0.21.1",
"bcrypt": "^5.1.0",
"body-parser": "^1.19.0",
"config": "^3.3.6",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongoose": "^5.9.18"
}
}