-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 2.8 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "niraikanai",
"private": true,
"version": "0.1.0",
"type": "module",
"author": "HigaTsubasa",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TsubasaHiga/niraikanai.git"
},
"bugs": {
"url": "https://github.com/TsubasaHiga/niraikanai/issues"
},
"homepage": "https://github.com/TsubasaHiga/niraikanai#readme",
"keywords": [
"Vanilla-JS",
"Vite",
"MPA",
"Boilerplate"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"archive": "tsc && vite build && yarn node --loader ts-node/esm utils/genDistArchive.ts",
"lint:scripts": "eslint --ext .ts src/",
"lint:styles": "stylelint \"src/**/*.scss\"",
"fix:scripts": "yarn lint:scripts --fix",
"fix:styles": "yarn lint:styles --fix",
"format": "prettier --write --ignore-path .gitignore \"./**/*.{js,ts,json}\"",
"prepare": "husky install"
},
"engines": {
"node": ">=16.15.0"
},
"browserslist": [
"> 0.5% in JP",
"not IE 11"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint:scripts",
"git add"
],
"*.scss": [
"yarn lint:styles",
"git add"
]
},
"devDependencies": {
"@macropygia/vite-plugin-glob-input": "^0.0.15",
"@types/archiver": "^5.3.1",
"@types/handlebars-helpers": "^0.5.3",
"@types/is-touch-device": "^1.0.0",
"@types/node": "^18.11.9",
"@types/throttle-debounce": "^5.0.0",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"archiver": "^5.3.1",
"autoprefixer": "^10.4.13",
"css-declaration-sorter": "^6.3.1",
"css-mqpacker": "^7.0.0",
"cssnano": "^5.1.14",
"dayjs": "^1.11.6",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"fs": "^0.0.2",
"handlebars-helpers": "^0.10.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"path": "^0.12.7",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"sass": "^1.56.0",
"stylelint": "^14.14.1",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"utility-types": "^3.10.0",
"vite": "^3.2.2",
"vite-plugin-full-reload": "^1.0.4",
"vite-plugin-handlebars": "^1.6.0",
"vite-plugin-html": "^3.2.0"
},
"dependencies": {
"auto-bind": "^5.0.1",
"focus-visible": "^5.2.0",
"gsap": "^3.11.3",
"is-touch-device": "^1.0.1",
"ress": "^5.0.2",
"throttle-debounce": "^5.0.0",
"ua-parser-js": "^1.0.32"
},
"volta": {
"node": "16.15.0"
}
}