-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.82 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.82 KB
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": "appersonautomotive.com",
"version": "3.0.0",
"description": "appersonautomotive.com",
"main": "dist/index.html",
"repository": {
"url": "git+ssh://git@github.com/WebJamApps/AppersonAuto.git",
"type": "git"
},
"author": "https://github.com/orgs/WebJamApps/teams/the-95-theses",
"engines": {
"node": "24.15.0",
"npm": "11.12.1"
},
"files": [
"vite.config.ts",
"src/",
"static/",
"public/"
],
"keywords": [
"React",
"Typescript",
"Vite",
"Vitest"
],
"license": "MIT",
"scripts": {
"install:prod": "npm run cleanup && npm install --only=prod",
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test:stylelint": "stylelint \"static/**/*.scss\"",
"lint:fix": "eslint . --fix",
"test:lint-fix": "npm run test:stylelint && npm run lint:fix",
"test:lint": "npm run test:stylelint && eslint .",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:unit-u": "vitest run -u",
"cleanup": "rm -rf yarn.lock && rm -rf package-lock.json && rm -rf node_modules",
"cleaninstall": "npm install -g npm@latest && npm run cleanup && npm install",
"smoketest": "npm run cleanup && npm install --omit=dev && npm run build",
"postinstall": "npm run build"
},
"dependencies": {
"@types/node": "^22.9.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/react-router-hash-link": "^2.4.5",
"@types/react-slick": "^0.23.4",
"@vitejs/plugin-react": "^6.0.1",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"express-sslify": "^1.2.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resize-detector": "^9.1.0",
"react-router-dom": "^6.16.0",
"react-router-hash-link": "^2.4.3",
"react-slick": "^0.29.0",
"sass": "^1.69.5",
"slick-carousel": "^1.8.1",
"stylelint-config-recommended-scss": "^17.0.1",
"typescript": "^5.2.2",
"vite": "^8.0.10",
"vite-plugin-checker": "^0.13.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.0.0",
"@types/react-test-renderer": "^18.0.2",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/eslint-plugin": "^1.6.16",
"eslint": "^10.2.1",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-security": "^4.0.0",
"globals": "^15.14.0",
"jsdom": "^26.1.0",
"react-test-renderer": "^18.2.0",
"stylelint": "^17.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-scss": "^7.0.0",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.5"
}
}