-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "@tsed/root",
"version": "1.0.0",
"description": "Project example that use Passport/Mongoose/SocketIO",
"private": true,
"scripts": {
"build": "yarn run barrels && swc src/index.ts -o dist/index.js -s",
"barrels": "barrelsby --config packages/server/.barrelsby.json",
"start": "yarn run barrels && node-dev src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"test": "yarn run test:lint && yarn run test:coverage ",
"test:unit": "cross-env NODE_ENV=test jest",
"test:coverage": "yarn run test:unit ",
"test:lint": "eslint '**/*.{ts,js}'",
"test:lint:fix": "eslint '**/*.{ts,js}' --fix",
"prettier": "prettier '**/*.{ts,js,json,md,yml,yaml}' --write",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@tsed/schema-formio": "7.59.0",
"lerna": "^8.0.2"
},
"devDependencies": {
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.104",
"@swc/helpers": "^0.5.3",
"@types/is-ci": "^3",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "10.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"node-dev": "^8.0.0",
"prettier": "^3.2.4",
"supertest": "^6.3.4",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"tsed": {
"convention": "conv_default",
"architecture": "arc_default",
"packageManager": "yarn_berry",
"runtime": "swc"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}