-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
69 lines (69 loc) · 2.19 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
{
"name": "gbi",
"private": true,
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@typescript-eslint/parser": "^4.22.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby-package": "^1.3.0",
"core-js": "^3.10.2",
"cross-env": "^7.0.3",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"gatsby-plugin-image": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-junit": "^12.0.0",
"lerna": "^4.0.0",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.2.4",
"ts-jest": "^26.5.5"
},
"resolutions": {
"cssom": "^0.4.4"
},
"dependencies": {
"gatsby-background-image": "file:packages/gatsby-background-image",
"gatsby-background-image-es5": "file:packages/gatsby-background-image-es5",
"gbimage-bridge": "file:packages/gbimage-bridge"
},
"scripts": {
"bootstrap": "npm run lerna-prepare",
"cci": "scripts/runcircleci.sh",
"jest": "jest",
"lerna-prepare": "lerna run prepare",
"postmarkdown": "prettier --write \"starters/**/*.md\"",
"prebootstrap": "yarn",
"preintegration": "cd integration && yarn install && cd ../gbitest && yarn install && cd ..",
"prettier": "prettier \"**/**/*.{md,css,scss,yaml,yml,ts}\"",
"pub": "lerna publish",
"test": "jest -i",
"test:coverage": "jest -i --coverage",
"test:update": "jest -i --updateSnapshot",
"test:watch": "jest --watch",
"version": "prettier --write \"**/CHANGELOG.md\"",
"watch": "lerna run watch --no-sort --stream --concurrency 999"
},
"workspaces": [
"packages/*"
],
"version": "1.6.0"
}