-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.93 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "rosmarin.ts",
"version": "0.1.0",
"description": "Framework for REST API development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test:precommit": "jest --config jest.config.ts --findRelatedTests",
"test": "jest --config jest.config.ts",
"format": "prettier --write \"src/**/*.ts\" \"__test__/**/*.ts\" \"examples/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" \"__test__/**/*.ts\" \"examples/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"__test__/**/*.ts\" \"examples/**/*.ts\"",
"build": "tsc --project tsconfig.build.json",
"clean": "rimraf dist"
},
"keywords": [
"REST",
"Hypermedia",
"HATEOAS",
"HTTP"
],
"author": "Matthias Keckl",
"license": "MIT",
"dependencies": {
"class-transformer": "^0.4.0",
"etag": "^1.8.1",
"fastify": "^3.14.2",
"negotiator": "^0.6.2",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.4.0"
},
"devDependencies": {
"@types/benchmark": "^2.1.0",
"@types/etag": "^1.8.0",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.1",
"@types/negotiator": "^0.6.1",
"@types/node": "^14.14.31",
"@types/pg": "^7.14.11",
"@types/pino": "^6.3.6",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"bcrypt": "^5.0.1",
"benchmark": "^2.1.4",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^10.5.4",
"pg": "^8.5.1",
"pino-pretty": "^4.7.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"npm run test:precommit",
"npm run lint",
"npm run format"
]
}
}