-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 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
{
"name": "evalcarbone-sih",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"amibroken": "yarn dedupe --check && yarn lint:css && yarn typecheck && yarn lint:typescript && yarn test:coverage",
"build": "yarn prisma:generate && next build",
"deadcode": "knip",
"depcheck": "depcheck",
"deploy:backend": "ansible-playbook -i infra/inventories/ovh.yml infra/playbook-backend.yml",
"deploy:frontend": "ansible-playbook -i infra/inventories/ovh.yml infra/playbook-frontend.yml",
"deploy:referential": "ansible-playbook -i infra/inventories/ovh.yml infra/playbook-referential.yml",
"deploy:reverse-proxy": "ansible-playbook -i infra/inventories/ovh.yml infra/playbook-reverse-proxy.yml",
"dev": "yarn prisma:generate && next dev",
"dev-https": "next dev --experimental-https",
"lint:css": "stylelint 'src/**/*.css'",
"lint:typescript": "eslint . --ext .tsx,.ts --max-warnings=0",
"load_referentiels": "cd infra/roles/referential/files && bash load_referentiels_local.sh",
"prepare": "husky",
"prisma:generate": "npx prisma generate",
"psql:local": "docker exec -it postgresdb psql -U postgres postgres",
"start": "next start",
"start:db": "docker compose down && docker compose up -d",
"test": "vitest --run",
"test:coverage": "yarn test --coverage",
"test:mutation": "npx stryker run stryker.conf.json",
"typecheck": "tsc"
},
"dependencies": {
"@prisma/client": "^5.12.1",
"@reach/alert": "^0.18.0",
"@reach/dialog": "^0.18.0",
"@reach/tooltip": "^0.18.0",
"@types/node": "^20.12.8",
"@types/react": "^18.3.1",
"chart.js": "^4.4.2",
"next": "^14.1.3",
"next-auth": "^4.24.7",
"prisma": "^5.12.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@stryker-mutator/core": "^8.2.6",
"@stryker-mutator/typescript-checker": "^8.2.6",
"@stryker-mutator/vitest-runner": "^8.2.6",
"@testing-library/react": "^15.0.6",
"@testing-library/user-event": "^14.5.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-istanbul": "^1.5.3",
"depcheck": "^1.4.7",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-testing-library": "^6.2.2",
"eslint-plugin-unused-imports": "^3.1.0",
"eslint-plugin-vitest": "0.4.1",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"knip": "^5.9.4",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"vitest": "^1.6.0",
"vitest-dom": "^0.1.1"
},
"engines": {
"node": "20.12.2"
},
"packageManager": "yarn@4.2.1",
"prisma": {
"schema": "src/schema.prisma"
}
}