-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.27 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
{
"name": "vue3",
"version": "0.2.0",
"homepage": "https://jagfx.github.io/vue3-template",
"scripts": {
"dev": "npm run font:build && vite -c tools/vite.config.ts",
"build": "npm run font:build && npx vue-tsc -p tools/tsconfig.json --noEmit && npx vite build -c tools/vite.config.ts",
"build:preview": "npm run font:build && npx vue-tsc -p tools/tsconfig.json --noEmit && vite preview --port 8001 -c tools/vite.config.ts",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
"lint:eslint": "npx eslint 'src/**/*.{js,vue,ts}' --fix -c tools/.eslintrc.json",
"lint:prettier": "npx prettier --config tools/.prettierrc.json 'src/**/*.{js,vue,ts}' --write",
"lint:stylelint": "npx stylelint --fix src/**/*.scss --config tools/.stylelintrc.json",
"test": "npm run test:unit",
"test:unit": "npx jest -c tools/.jestrc.js",
"test:coverage": "npx jest --coverage -c tools/.jestrc.js",
"test:coverage:preview": "npm run test:coverage && npx http-server coverage/lcov-report/ -p 8002",
"font:build": "npx fantasticon -c tools/.fantasticonrc.json",
"predeploy": "npm run build",
"deploy": "npx gh-pages -d dist"
},
"dependencies": {
"vue": "^3.2.37"
},
"devDependencies": {
"@types/jest": "^29.0.1",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/compiler-sfc": "^3.0.4",
"@vue/eslint-config-typescript": "^11.0.1",
"@vue/vue3-jest": "^29.0.0",
"bootstrap": "^5.2.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.4.0",
"fantasticon": "^1.2.3",
"gh-pages": "^3.2.3",
"http-server": "^14.1.1",
"jest": "^29.0.3",
"postcss-import": "^14.1.0",
"prettier": "^2.7.1",
"sass": "^1.54.9",
"stylelint": "^14.11.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard-scss": "^4.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"vite": "^3.1.0",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^0.40.13"
}
}