-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 3.02 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
{
"name": "ganttcraft",
"author": {
"email": "joris@zaruike.dev",
"name": "Joris Dugué",
"url": "https://zaruike.dev"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"license": "Apache-2.0",
"version": "1.0.0",
"scripts": {
"dev": "ts-node -r tsconfig-paths/register --project tsconfig.server.json main.ts",
"build": "tsc --project tsconfig.server.json && tscpaths -p tsconfig.server.json -s ./ -o ./dist && next build && cp .env ./dist/.env",
"test": "jest --watch --updateSnapshot",
"test:ci": "jest --config ./jest.config.js --collectCoverage --coverageDirectory=\\\"./coverage\\\" --ci --reporters=default --reporters=jest-junit --watchAll=false",
"lint": "next lint && eslint ./src/**/*.ts",
"lint:fix": "next lint && eslint ./src/**/*.ts --fix",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"postinstall": "husky install",
"start": "next start",
"start:prod": "NODE_ENV=production && node dist/main",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"dependencies": {
"@fastify/compress": "^6.5.0",
"@fastify/cookie": "^9.1.0",
"@fastify/multipart": "^8.0.0",
"@fastify/oauth2": "^7.8.0",
"@reduxjs/toolkit": "^1.9.7",
"@types/jsonwebtoken": "^9.0.7",
"@xascode/tscpaths": "^0.1.4",
"draftlog": "^1.0.13",
"fastify": "^4.27.0",
"gantt-task-react": "https://github.com/jorisdugue/gantt-task-react",
"jdenticon": "^3.2.0",
"jsonwebtoken": "^9.0.2",
"next": "^14.2.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-redux": "^8.1.3",
"react-select": "^5.7.7"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "14.1.2",
"@types/jest-axe": "3.5.9",
"@types/node": "^22.5.0",
"@types/react": "^18.2.46",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"autoprefixer": "^10.4.16",
"eslint": "8.56.0",
"eslint-config-google": "0.14.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-react": "7.33.2",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-axe": "8.0.0",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "16.0.0",
"jest-sonar-reporter": "2.0.0",
"postcss": "^8.4.31",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "^0.6.6",
"standard-version": "9.5.0",
"tailwindcss": "^3.4.0",
"ts-jest": "29.1.1",
"tsconfig-paths": "4.2.0",
"typescript": "5.7.2",
"validate-branch-name": "1.3.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}