forked from js-tasks-ru/vue-20230320_eugene-kachalin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.15 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
{
"name": "tasks-vue-3",
"version": "5.2.5",
"private": true,
"description": "Taskbook for Vue 3 Course on learn.javascript.ru",
"author": "Grigorii K. Shartsev <[email protected]>",
"scripts": {
"serve": "vite --port 8080",
"dev": "vite --port 8080",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .vue,.js,.jsx,.ts,.tsx --ignore-path .gitignore",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.ts,.tsx --fix --ignore-path .gitignore",
"format": "prettier --write .",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"file-serve": "serve"
},
"dependencies": {
"core-js": "^3.30.1",
"date-fns": "^2.29.3",
"dayjs": "^1.11.7",
"dequal": "^2.0.3",
"gsap": "^3.11.5",
"klona": "^2.0.6",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"luxon": "^3.3.0",
"moment": "^2.29.4",
"nanoid": "^3.3.6",
"pinia": "^2.0.35",
"uuid": "^9.0.0",
"vue": "^3.2.45",
"vue-router": "^4.1.6",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/test-utils": "^2.3.2",
"@vue/tsconfig": "^0.1.3",
"@vue/vue3-jest": "^29.2.3",
"babel-jest": "^29.5.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vue": "^9.11.0",
"flush-promises": "^1.0.2",
"jest": "^29.5.0",
"jest-date-mock": "^1.0.8",
"jest-environment-jsdom": "^29.5.0",
"jest-serializer-vue": "^3.1.0",
"jest-transform-stub": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typescript": "4.9",
"vite": "^3.2.6",
"vue-tsc": "^1.4.2"
},
"license": "UNLICENSED",
"engines": {
"node": "^14.18.0 || ^16.0.0 || ^18.0.0"
}
}