-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.82 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": "Application Config Service",
"version": "1.0.0",
"description": "Backend to provide application configuration",
"scripts": {
"test": "jest",
"prepare": "husky install",
"lint": "eslint .",
"pretty": "prettier --check --ignore-unknown .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"dev": "nodemon",
"dev:app": "NODE_OPTIONS='--inspect' NEXT_PUBLIC_API_URL=http://localhost:8000/api/v1 next dev",
"build:app": "next build",
"start": "ts-node -T src/server.ts",
"postversion": "git push && git push --tags"
},
"license": "MIT",
"engines": {
"node": ">=18.15.0"
},
"dependencies": {
"@fastify/accepts-serializer": "^5.3.0",
"@fastify/cors": "^8.2.0",
"@fastify/static": "^7.0.4",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.5.0",
"@fastify/type-provider-typebox": "^3.6.0",
"@next/third-parties": "^14.2.13",
"@nextui-org/react": "^2.4.6",
"@sinclair/typebox": "^0.29.0",
"@tabler/icons-react": "^3.19.0",
"fastify": "4.23.2",
"ioredis": "^5.4.1",
"next": "^14.2.15",
"nodemon": "^2.0.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.5.4",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"postcss": "^8",
"prettier": "^2.8.4",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}