-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
{
"name": "live",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"test": "jest tests",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ignore-path .gitignore ."
},
"dependencies": {
"apollo-boost": "^0.4.7",
"core-js": "^3.4.4",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"tiny-emitter": "^2.1.0",
"vue": "^3.1.0",
"vue-tsc": "^1.8.8",
"vuex": "^4.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.3.1",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.48.0",
"eslint-config-codely": "^3.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-vue": "^9.17.0",
"jest": "^24.9.0",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
}
}