forked from Shopify/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.8 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
{
"name": "quilt",
"version": "1.0.0",
"description": "Shopify's javascript application utilities",
"scripts": {
"publish": "lerna publish",
"build": "yarn tsc --build packages",
"lint": "eslint '**/*.{ts,tsx}'",
"lint:changelogs": "node scripts/lint-changelogs.js",
"ci:lint-docs": "yarn generate docs && test -z \"$(git status --porcelain)\" || echo 'The root README has not been updated. Run `yarn generate docs` in the root of your quilt directory and try again.'",
"_test": "NODE_ICU_DATA=node_modules/full-icu jest",
"pretest": "yarn build",
"test": "yarn _test --no-coverage",
"test:ci": "yarn _test --maxWorkers=3 --coverage",
"check": "lerna run check",
"release": "yarn lint:changelogs && lerna publish",
"release-beta": "lerna publish --dist-tag beta",
"clean": "rimraf './packages/*/dist'",
"generate": "plop",
"generate:package": "plop package && yarn plop docs",
"tophat": "tophat"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/quilt.git"
},
"author": "Shopify Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/shopify/quilt/issues"
},
"homepage": "https://github.com/shopify/quilt#readme",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@apollo/react-common": "^3.1.3",
"@apollo/react-hooks": "^3.1.3",
"@babel/core": "^7.5.5",
"@shopify/app-bridge": "^0.7.3",
"@shopify/eslint-plugin": "^36.0.2",
"@shopify/tophat": "^0.0.3",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/faker": "^4.1.5",
"@types/jest": "^25.2.1",
"@types/puppeteer": "^1.20.0",
"@types/react": "16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.6",
"apollo-cache-inmemory": "^1.3.6",
"apollo-client": "^2.3.8",
"babel-jest": "^25.3.0",
"babel-loader": "^8.0.6",
"babel-preset-shopify": "^20.0.0",
"codecov": "^3.0.2",
"element-closest": "^3.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"faker": "^4.1.0",
"fs-extra": "^8.1.0",
"full-icu": "^1.3.0",
"get-port": "^5.0.0",
"glob": "^7.1.6",
"graphql": "^14.0.0",
"graphql-tag": "^2.10.3",
"intl-pluralrules": "^0.2.1",
"isomorphic-fetch": "^2.2.1",
"jest": "^25.3.0",
"jest-enzyme": "^7.1.2",
"jest-transform-graphql": "^2.1.0",
"lerna": "^2.9.0",
"plop": "^2.0.0",
"prettier": "~2.0.4",
"puppeteer": "^1.20.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-helmet": "^5.2.0",
"rimraf": "^2.6.2",
"ts-jest": "^25.3.1",
"tslib": "^1.9.3",
"typescript": "^3.7.5"
},
"dependencies": {},
"resolutions": {
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5"
}
}