-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2 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
{
"name": "simple-pay-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/mathd1as/simple-pay-api.git",
"author": "mathd1as <matheus.vex@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig-build.json",
"start": "node dist/main/server.js",
"dev": "ts-node-dev --respawn --transpile-only -r dotenv/config src/main/server.ts",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:coverage": "npm test -- --coverage",
"prepare": "husky install"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/module-alias": "^2.0.1",
"@types/node": "^17.0.36",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-mock-extended": "^2.0.6",
"lint-staged": "^12.5.0",
"pg-mem": "^2.4.11",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.7.2"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.6"
}
}