forked from Shopify/theme-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "theme-scripts",
"private": true,
"version": "2.0.0",
"description": "A collection of helpful script libraries that help you make better Shopify themes.",
"main": "index.js",
"scripts": {
"test": "jest",
"bootstrap": "yarn && lerna bootstrap && lerna run build",
"publish": "lerna publish",
"build": "lerna run build",
"lint": "yarn eslint ./",
"check": "lerna run check",
"updated": "lerna updated",
"release": "lerna publish && git push --follow-tags"
},
"repository": "https://github.com/Shopify/theme-scripts",
"keywords": [
"Shopify"
],
"author": "Shopify Inc.",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-preset-shopify": "^16.2.0",
"eslint": "^5.5.0",
"eslint-plugin-es5": "^1.3.1",
"eslint-plugin-shopify": "^24.0.0",
"express": "^4.16.3",
"fetch-mock": "^7.0.0-alpha.6",
"isomorphic-fetch": "^2.2.1",
"jest": "^23.0.1",
"jest-puppeteer": "^3.0.1",
"jest-raw-loader": "^1.0.1",
"jquery": "3.x",
"lerna": "^2.9.0",
"prettier": "^1.14.2",
"promise": "^8.0.3",
"puppeteer": "^1.4.0"
},
"workspaces": [
"packages/*"
]
}