-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.68 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
{
"name": "@sanctucompu/sanity-graph-import",
"author": "Sanctuary Computer",
"version": "1.1.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"private": false,
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"test:init": "yarn test-studio:init && yarn test:record",
"test:coverage": "tsdx test --collectCoverage",
"test:coverage:send": "codecov",
"test:watch": "tsdx test --watch",
"test:record": "POLLY_MODE=record yarn test",
"lint": "tsdx lint src",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"test-studio:init": "sh ./scripts/test-studio/init.sh",
"semantic-release": "semantic-release"
},
"module": "dist/sanity-graph-import.esm.js",
"size-limit": [
{
"path": "dist/sanity-graph-import.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/sanity-graph-import.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@sanity/cli": "^2.2.3",
"@sanity/client": "^2.1.4",
"@scaleleap/jest-polly": "^1.5.19",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.1",
"@size-limit/preset-small-lib": "^4.9.1",
"@types/cli-progress": "^3.8.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/hash-sum": "^1.0.0",
"@types/lodash": "^4.14.168",
"@types/prettier": "^2.1.6",
"@types/semantic-release": "^17.2.0",
"codecov": "^3.8.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.8",
"lodash": "^4.17.20",
"markdown-toc": "^1.2.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"semantic-release": "^17.3.7",
"size-limit": "^4.9.1",
"ts-node": "^9.1.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.1.3",
"typesync": "^0.8.0"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint && pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@sanity/import": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"chalk": "^4.1.0",
"cli-progress": "^3.8.2",
"dotenv": "^8.2.0",
"hash-sum": "^2.0.0",
"p-queue": "^6.6.2",
"prompt-confirm": "^2.0.4",
"tiny-invariant": "^1.1.0"
}
}