forked from logaretm/villus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.47 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
{
"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 <logaretm1@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.3",
"@graphql-typed-document-node/core": "^3.1.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.23",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-jest": "^26.6.3",
"bundlesize": "^0.18.0",
"chalk": "^4.1.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"fast-json-stable-stringify": "^2.1.0",
"filesize": "^6.3.0",
"flush-promises": "^1.0.2",
"graphql": "^15.5.0",
"graphql-tag": "^2.12.4",
"gzip-size": "^6.0.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"mkdirp": "^1.0.4",
"msw": "^0.28.2",
"node-fetch": "^2.6.1",
"prettier": "^2.3.0",
"rollup": "^2.47.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"terser": "^5.7.0",
"ts-jest": "^26.5.6",
"typescript": "^4.1.5",
"vue": "^3.0.0",
"vue-jest": "^3.0.7",
"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": {}
}