forked from danielroe/vue-sanity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.72 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "vue-sanity",
"version": "0.5.2",
"description": "Sanity integration for VueJS",
"license": "MIT",
"repository": "danielroe/vue-sanity",
"contributors": [
{
"name": "Daniel Roe <[email protected]>",
"url": "https://github.com/danielroe"
}
],
"keywords": [
"vue",
"vuejs",
"nuxt",
"sanity",
"composition-api",
"typescript",
"javascript"
],
"main": "lib/index.js",
"module": "lib/index.es.js",
"browser": "lib/index.bundle.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"lib/index.d.ts",
"!**/*.map"
],
"sideEffects": false,
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "rm -rf lib/*",
"compile": "rollup -c",
"lint": "run-s lint:all:*",
"lint:all:eslint": "yarn lint:eslint --ext .js,.ts,.vue .",
"lint:all:prettier": "yarn lint:prettier \"**/*.{js,json,ts}\"",
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --write --loglevel warn",
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn test",
"release": "release-it",
"test": "run-s test:*",
"test:types": "tsd",
"test:unit": "jest"
},
"tsd": {
"directory": "test/tsd",
"compilerOptions": {
"rootDir": "."
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"dependencies": {
"@sanity/client": "^1.149.7",
"@sanity/image-url": "^0.140.18",
"minify-groq": "^1.0.0",
"sanity-typed-queries": "^0.6.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@release-it/conventional-changelog": "^1.1.4",
"@types/jest": "^25.2.1",
"@types/jsdom": "^16.2.1",
"@types/memory-fs": "^0.3.2",
"@types/webpack": "^4.41.12",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"@vue/composition-api": "^0.5.0",
"@vue/test-utils": "^1.0.0-beta.33",
"babel-loader": "^8.1.0",
"codecov": "^3.6.5",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"flush-promises": "^1.0.2",
"jest": "^25.5.2",
"lint-staged": "^10.2.0",
"memory-fs": "^0.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"prettier-eslint-cli": "^5.0.0",
"release-it": "13.5.7",
"rollup": "^2.7.5",
"rollup-plugin-typescript2": "^0.27.0",
"tsd": "^0.11.0",
"vue": "2",
"vue-server-renderer": "^2.6.11",
"webpack": "^4.43.0",
"yorkie": "^2.0.0"
},
"peerDependencies": {
"@vue/composition-api": "^0.5.0",
"vue": "^2"
},
"resolutions": {
"minimist": ">=1.2.5"
}
}