-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.35 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
{
"name": "autocentral.tn",
"version": "1.0.0",
"private": true,
"engines": {
"node": "20.15.0"
},
"scripts": {
"dev": "node server.js | pino-pretty",
"watch": "yarn dev",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production node server.js",
"lint": "next lint",
"cover": "nyc mocha 'test/**/*.test.ts' --exit",
"cover:report": "nyc report --reporter=lcovonly",
"test": "yarn cover && yarn cover:report",
"test:ci": "nyc --reporter=lcovonly mocha 'test/**/*.test.ts' --exit"
},
"dependencies": {
"@next/font": "^14.2.15",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"dotenv": "^16.4.5",
"luxon": "3.5.0",
"next": "14.2.5",
"next-logger": "5.0.0",
"next-themes": "0.3.0",
"nextjs-toploader": "1.6.12",
"npm": "^10.9.1",
"pino": "9.5.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.27.0",
"react-select": "^5.8.1",
"sanitize-html": "^2.13.0"
},
"devDependencies": {
"@nestjs/testing": "^10.3.8",
"@salesforce/ts-sinon": "^1.4.19",
"@tailwindcss/forms": "^0.5.8",
"@types/chai-as-promised": "^7.1.8",
"@types/dirty-chai": "^2.0.4",
"@types/luxon": "^3.4.2",
"@types/mocha": "^10.0.6",
"@types/node": "^22.5.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/sanitize-html": "^2",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.0.1",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"chai-exclude": "^2.1.0",
"dirty-chai": "^2.0.1",
"dotvault": "^0.0.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.4.0",
"nyc": "^17.0.0",
"pino-pretty": "^11.2.2",
"postcss": "^8.4.41",
"prettier": "^2.8.0",
"sinon": "^19.0.0",
"sinon-chai": "^3.7.0",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.10",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
},
"mocha": {
"require": [
"ts-node/register",
"tsconfig-paths/register"
]
}
}