-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.37 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "blog-template",
"version": "0.0.0",
"scripts": {
"cleanup": "rimraf dist",
"dev": "nodemon",
"prod": "node ./dist/server/server.js",
"build:server": "tsc -p server/tsconfig.json",
"build:client": "tsc -p src/tsconfig.json && vite build",
"build": "yarn cleanup && yarn build:client && yarn build:server && yarn postbuild",
"postbuild": "node ./scripts/postbuild.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "yarn test --coverage",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"format": "prettier --write .",
"postinstall": "node ./scripts/postinstall.js"
},
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/static": "^6.5.0",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.12",
"@mui/styled-engine": "npm:@mui/[email protected]",
"@nestjs/common": "^9.1.6",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.1.6",
"@nestjs/jwt": "^9.0.0",
"@nestjs/mongoose": "^9.2.1",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-fastify": "^9.1.6",
"@tanstack/react-query": "^4.14.1",
"@tanstack/react-query-devtools": "^4.14.1",
"bcrypt": "^5.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cross-fetch": "^3.1.5",
"date-fns": "^2.29.3",
"final-form": "^4.20.7",
"htm": "^3.1.1",
"http-status-codes": "^2.2.0",
"jotai": "^1.9.1",
"mongoose": "^6.7.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"preact": "^10.11.2",
"react": "npm:@preact/[email protected]",
"react-dom": "npm:@preact/[email protected]",
"react-final-form": "^6.5.9",
"react-router-dom": "^6.4.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.7",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@nestjs/testing": "^9.1.6",
"@preact/preset-vite": "^2.4.0",
"@rollup/plugin-typescript": "^9.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/preact": "^3.2.2",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/node": "^18.11.9",
"@types/passport-jwt": "^3.0.7",
"@types/passport-local": "^1.0.34",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitest/coverage-istanbul": "^0.24.5",
"eslint": "^8.26.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-testing-library": "^5.9.1",
"husky": "^8.0.1",
"jsdom": "^20.0.2",
"lint-staged": "^13.0.3",
"msw": "^0.47.4",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tslib": "^2.4.1",
"typescript": "^4.8.4",
"typescript-lit-html-plugin": "^0.9.0",
"typescript-styled-plugin": "^0.18.2",
"vite": "^3.2.2",
"vite-plugin-checker": "^0.5.1",
"vitest": "0.24.5"
},
"packageManager": "[email protected]",
"resolutions": {
"@mui/styled-engine": "npm:@mui/[email protected]"
},
"type": "module",
"imports": {
"#src/*": "./src/*",
"#server/*": "./server/*",
"#test/*": "./test/*"
}
}