-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.52 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
{
"name": "datocms-listen",
"version": "1.0.1",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git://github.com/datocms/datocms-listen.git"
},
"license": "MIT",
"author": "Stefano Verna <[email protected]>",
"homepage": "https://github.com/datocms/datocms-listen",
"devDependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"@types/jest": "^26.0.0",
"@types/raf": "^3.4.0",
"@types/rimraf": "^3.0.0",
"doctoc": "^1.4.0",
"jest": "^26.6.3",
"np": "^6.5.0",
"p-defer": "^3.0.0",
"raf": "^3.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1",
"typescript": "^4.7.3",
"vite": "^3.1.0"
},
"scripts": {
"build": "rimraf dist && tsc && tsc --project ./tsconfig.esnext.json",
"watch": "rimraf dist && tsc --watch",
"prepare": "npm run test && npm run build",
"test": "jest --coverage",
"toc": "doctoc README.md",
"dev": "vite"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"setupFiles": [
"raf/polyfill"
],
"coverageReporters": [
"html",
"text"
],
"roots": [
"src"
],
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
},
"dependencies": {
"@0no-co/graphql.web": "^1.0.1",
"@datocms/cda-client": "^0.1.7"
}
}