-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
52
53
54
55
56
57
58
59
60
61
{
"name": "strider-posterr",
"version": "0.0.1",
"description": "Strider Posterr",
"main": "src/index.ts",
"author": "Dalton Oliveira <[email protected]>",
"license": "MIT",
"private": true,
"files": [
"src/**/*"
],
"scripts": {
"start": "nodemon",
"build": "tsc",
"lint": "run-p --aggregate-output --continue-on-error lint:*",
"lint:es": "eslint --ext .ts,.js .",
"lint:md": "markdownlint --dot --ignore-path .gitignore .",
"test": "jest",
"prepare": "husky install"
},
"engines": {
"node": ">=16",
"yarn": "^1"
},
"dependencies": {
"@types/express": "^4.17.13",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.1",
"neo4j-driver": "^4.4.5"
},
"devDependencies": {
"@swc/core": "^1.2.194",
"@types/eslint": "^8.4.2",
"@types/jest": "^28.1.0",
"@types/node": "^17.0.39",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"markdownlint": "^0.25.1",
"markdownlint-cli": "^0.31.1",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"supertest": "^6.2.3",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}