-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "rem-craft-test",
"private": true,
"type": "module",
"version": "0.0.14",
"scripts": {
"make-link": "node --no-warnings ./scripts/make_dev_link.js",
"dev": "tsc && vite build --watch",
"build": "tsc && vite build",
"amend": "git add . && git commit --amend --no-edit && git push --force",
"preview": "vite preview",
"format": "prettier --write .",
"release": "standard-version && git push --follow-tags origin main",
"lint": "eslint . --ext .ts .cjs --fix --ignore-path .gitignore",
"lint:scss": "stylelint src/*.scss --fix"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.11.21",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.1",
"commitizen": "^4.3.0",
"cz-git": "^1.8.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.22.0",
"fast-glob": "^3.3.2",
"prettier": "^3.2.5",
"rollup-plugin-livereload": "^2.0.5",
"sass": "^1.71.1",
"standard-version": "^9.5.0",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-static-copy": "^1.0.1",
"vite-plugin-zip-pack": "^1.2.1"
}
}