-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.58 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
{
"name": "deepkit-rest",
"version": "0.0.0",
"description": "",
"private": true,
"license": "Apache-2.0",
"scripts": {
"prepare": "husky install",
"build": "tsc -b tsconfig.build.json",
"lint": "eslint \"packages/*/src/*.ts\" --cache --fix && prettier --write \"{packages/*/src/*,*}.{html,css,less,scss,sass,js,json,md}\"",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --config jest.config.unit.js",
"test:integration": "jest --config jest.config.integration.js"
},
"devDependencies": {
"@deepkit/app": "^1.0.1-alpha.75",
"@deepkit/core": "^1.0.1-alpha.75",
"@deepkit/event": "^1.0.1-alpha.75",
"@deepkit/framework": "^1.0.1-alpha.75",
"@deepkit/http": "^1.0.1-alpha.75",
"@deepkit/injector": "^1.0.1-alpha.75",
"@deepkit/logger": "^1.0.1-alpha.75",
"@deepkit/orm": "^1.0.1-alpha.75",
"@deepkit/sqlite": "^1.0.1-alpha.75",
"@deepkit/type": "^1.0.1-alpha.75",
"@deepkit/type-compiler": "^1.0.1-alpha.75",
"@types/jest": "^28.1.4",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"ts-jest": "^28.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.9.1",
"typescript": "~4.7.4"
},
"workspaces": [
"packages/*"
]
}