-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.62 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
{
"name": "solar-system",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc && vite build",
"test": "echo \"Warning: no test specified\"",
"cspell": "cspell --config cspell.json \"**/*.{ts,tsx,js,jsx,html,json}\" --quiet",
"run-eslint": "eslint src --ext ts,tsx,html --report-unused-disable-directives --max-warnings 0",
"run-stylelint": "stylelint \"**/*.scss\"",
"lint": "bun run run-eslint && bun run run-stylelint",
"lint-fix": "bun run run-eslint -- --fix",
"preview": "vite preview",
"prepare": "husky",
"docker-dev-up": "docker-compose -f docker-compose-dev.yaml up -d --build",
"docker-up": "docker-compose -f docker-compose.yaml up -d --build",
"docker-dev-down": "docker-compose -f docker-compose-dev.yaml down",
"docker-down": "docker-compose -f docker-compose.yaml down"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.19",
"cspell": "^8.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"stylelint": "^16.3.1",
"stylelint-config-standard-scss": "^13.1.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-tsconfig-paths": "^4.3.1"
},
"engines": {
"node": "20.13.1"
},
"packageManager": "[email protected]"
}