forked from Shopify/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "quilt",
"version": "1.0.0",
"description": "Shopify's javascript application utilities",
"engines": {
"node": ">=8.10.0",
"yarn": ">=1.9.4"
},
"scripts": {
"publish": "lerna publish",
"prebuild": "yarn run clean",
"build": "lerna run build",
"lint": "yarn eslint '**/*.{ts,tsx}'",
"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": "jest --maxWorkers=3",
"check": "lerna run check",
"release": "lerna publish && git push --follow-tags",
"clean": "rimraf './packages/*/dist/**/*.{js,d.ts}'",
"generate": "yarn plop",
"tophat": "node ./bin/tophat.js"
},
"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": {
"@shopify/app-bridge": "^0.7.3",
"@types/enzyme": "^3.1.10",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "^23.3.5",
"@types/react": "16.3.18",
"@types/react-helmet": "^5.0.6",
"codecov": "^3.0.2",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.0.0",
"eslint-plugin-shopify": "^23.1.0",
"graphql-tag": "^2.8.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^23.6.0",
"jest-transform-graphql": "^2.1.0",
"lerna": "^2.9.0",
"plop": "^2.0.0",
"prettier": "^1.14.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.4",
"tslib": "^1.9.3",
"typescript": "~3.0.1"
},
"resolutions": {
"@types/react": "16.3.18"
},
"dependencies": {}
}