-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 983 Bytes
/
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
{
"name": "vite-production-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"native-js": "esbuild src/assets/js/*.js --outdir=dist/assets/js/ && esbuild src/assets/js/module/*.js --outdir=dist/assets/js/module/",
"preview": "vite preview",
"eslint": "eslint --ext js,ts ."
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"autoprefixer": "^10.4.14",
"css-declaration-sorter": "^6.4.0",
"eslint": "^8.40.0",
"postcss": "^8.4.23",
"postcss-normalize-charset": "^6.0.0",
"postcss-sort-media-queries": "^5.1.0",
"sass": "^1.62.1",
"typescript": "^5.0.4",
"vite": "^4.3.2",
"vite-plugin-handlebars": "^1.6.0"
},
"browserslist": [
"last 2 versions",
"> 5%",
"Firefox ESR",
"not dead"
],
"dependencies": {}
}