forked from logaretm/villus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.55 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
{
"name": "villus-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"docs:dev": "cd ./docs && npm run dev && cd -",
"docs:build": "cd ./docs && npm run build && cd -",
"docs:deploy": "./scripts/deploy-docs.sh",
"test": "jest",
"test:ci": "jest --ci --detectOpenHandles --runInBand",
"cover": "jest --coverage",
"cover:ci": "jest --coverage --ci --runInBand --detectOpenHandles",
"lint": "eslint . '**/*.{js,jsx,ts,tsx}' --fix",
"build": "node scripts/build.js",
"postversion": "npm run build",
"format": "prettier ./packages/**/*.ts --write"
},
"author": "Abdelrahman Awad <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@graphql-typed-document-node/core": "^3.1.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.5.1",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@vue/compiler-sfc": "^3.2.36",
"babel-jest": "^28.1.0",
"bundlesize": "^0.18.0",
"chalk": "^4.1.2",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"fast-json-stable-stringify": "^2.1.0",
"filesize": "^8.0.7",
"flush-promises": "^1.0.2",
"graphql": "^16.5.0",
"graphql-tag": "^2.12.6",
"gzip-size": "^6.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lerna": "^4.0.0",
"lint-staged": "^12.4.1",
"mkdirp": "^1.0.4",
"msw": "^0.41.0",
"node-fetch": "^2.6.1",
"prettier": "^2.6.2",
"rollup": "^2.74.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.31.2",
"terser": "^5.13.1",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4",
"vue": "^3.2.36",
"vue-jest": "^5.0.0-alpha.10",
"wait-for-expect": "^3.0.2"
},
"bundlesize": [
{
"path": "./dist/*.min.js",
"maxSize": "10 kB"
}
],
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"jest --maxWorkers=1 --bail --findRelatedTests"
],
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {}
}