generated from Kazuki-tam/vitam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.89 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
85
86
87
88
{
"name": "vitam",
"version": "0.1.3",
"description": "VITAM is a front-end template with Vite for static websites.",
"author": "Kazuki Yonemoto (https://dev.to/tim_yone)",
"scripts": {
"checkLicense": "license-checker --production",
"postInstall": "typesync",
"stylelint": "stylelint 'src/**/*.{css,scss}' --fix",
"textLint": "textlint *.md",
"textLint:fix": "textlint --fix *.md",
"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 eslint checkTypes",
"lint:fix": "npm-run-all eslint:fix checkTypes format",
"test": "jest",
"test:watch": "jest --watch",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"serve": "npm-run-all build preview"
},
"license": "MIT",
"devDependencies": {
"@types/eslint": "^8.2.0",
"@types/jest": "^27.4.0",
"@types/license-checker": "^25.0.3",
"@types/micromodal": "^0.3.3",
"@types/node": "^16.11.9",
"@types/prettier": "^2.4.2",
"@types/sass": "^1.43.0",
"@types/smooth-scroll": "^16.1.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"autoprefixer": "^10.4.0",
"css-declaration-sorter": "^6.1.3",
"eslint": "^8.3.0",
"html-validate": "^6.1.3",
"jest": "^27.5.1",
"license-checker": "^25.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.11",
"postcss-combine-media-query": "^1.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-plugin": "^1.0.0",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"textlint": "^12.0.2",
"textlint-filter-rule-allowlist": "^4.0.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-ginger": "^2.2.1",
"textlint-rule-no-dead-link": "^4.8.0",
"textlint-rule-write-good": "^2.0.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typescript": "^4.3.2",
"typesync": "^0.8.0",
"vite": "^2.6.4",
"vite-plugin-handlebars": "^1.6.0",
"vite-plugin-imagemin": "^0.6.1",
"vite-plugin-pwa": "^0.11.10",
"vite-plugin-svg-icons": "^2.0.1"
},
"dependencies": {
"install": "^0.13.0",
"micromodal": "^0.4.9",
"smooth-scroll": "^16.1.3",
"style-loader": "^3.3.1",
"swiper": "^7.3.1",
"tween24": "^0.9.11",
"yarn": "^1.22.17"
},
"resolutions": {
"vite-plugin-pwa/**/ejs": "^3.1.7",
"textlint-rule-ginger/**/json-schema": "^0.4.0",
"textlint-rule-no-dead-link/**/node-fetch": "^2.6.7"
}
}