-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.59 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
{
"name": "spa-skeleton",
"version": "1.0.0",
"description": "Boilerplate for creating a single-page application (SPA). It is built with Vite, featuring Handlebars and SCSS",
"author": "Martin Sazzaroli",
"repository": {
"type": "git",
"url": "git+https://github.com/masaroli/spa-skeleton.git"
},
"license": "MIT",
"scripts": {
"postInstall": "typesync",
"stylelint": "stylelint 'src/**/*.{css,scss}'",
"stylelint:fix": "stylelint 'src/**/*.{css,scss}' --fix",
"htmlValidate": "html-validate 'dist/**/*.html'",
"format": "prettier --write --plugin-search-dir=. 'src/**/*.{js,ts}'",
"eslint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"eslint:fix": "eslint --fix 'src/**/*.{js,ts}'",
"checkTypes": "tsc --noEmit",
"lint": "npm-run-all -p eslint checkTypes stylelint htmlValidate",
"lint:fix": "npm-run-all eslint:fix checkTypes format stylelint:fix",
"test": "jest",
"test:watch": "jest --watch",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"serve": "npm-run-all build preview"
},
"devDependencies": {
"@types/eslint": "^8.21.1",
"@types/jest": "^29.4.0",
"@types/license-checker": "^25.0.3",
"@types/micromodal": "^0.3.3",
"@types/node": "^18.15.0",
"@types/prettier": "^2.7.2",
"@types/smooth-scroll": "^16.1.1",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"autoprefixer": "^10.4.14",
"css-declaration-sorter": "^6.3.1",
"eslint": "^8.36.0",
"html-validate": "^7.13.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"license-checker": "^25.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-combine-media-query": "^1.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-plugin": "^1.0.0",
"prettier": "^2.8.4",
"sass": "^1.59.2",
"stylelint": "^15.2.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^30.0.1",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^3.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"typesync": "^0.10.0",
"vite": "^4.1.5",
"vite-plugin-handlebars": "^1.6.0",
"vite-plugin-imagemin": "^0.6.1",
"vite-plugin-pwa": "^0.14.4",
"vite-plugin-sass-glob-import": "^2.0.0",
"vite-plugin-svg-icons": "^2.0.1"
},
"dependencies": {
"install": "^0.13.0",
"micromodal": "^0.4.10",
"smooth-scroll": "^16.1.3",
"style-loader": "^3.3.1",
"swiper": "^9.1.0"
}
}