-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "vuex-resource",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/alykamb/vuex-resource.git"
},
"keywords": [
"vuex",
"vue",
"vue3",
"resource"
],
"author": "Alykam Burdzaki ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/alykamb/vuex-resource/issues"
},
"homepage": "https://github.com/alykamb/vuex-resource#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-0",
"babel-jest": "^26.6.3",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-class-members": "^1.9.0",
"jest": "^26.6.3",
"prettier": "^1.19.1",
"ts-jest": "^26.4.4",
"typescript": "~4.1.3",
"vuex": "^4.0.0-0",
"vue": "^3.0.0",
"axios": "^0.21.1"
},
"peerDependencies": {
"vuex": "^4.0.0-0",
"vue": "^3.0.0",
"axios": "^0.21.1"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
}
}