This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 364
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "slate",
"private": true,
"author": "Shopify Inc.",
"description": "A theme scaffold and command line tool for developing Shopify themes.",
"keywords": [
"slate",
"shopify",
"theme",
"CLI"
],
"engine": ">=8.9.4",
"homepage": "https://shopify.github.io/slate/",
"bugs": "https://github.com/Shopify/slate/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Shopify/slate.git"
},
"scripts": {
"test": "jest --silent",
"lint": "eslint --max-warnings 10 ./ && stylelint './**/*.[s]css'",
"lint:styles": "stylelint '**/*.[s]css'",
"lint:fix": "eslint ./ --fix && prettier-stylelint **/*.scss",
"lint:fix-js": "eslint ./ --fix",
"lint:fix-styles": "prettier-stylelint --write",
"bootstrap": "yarn install && lerna bootstrap",
"changelog": "node_modules/.bin/lerna-changelog",
"clean": "lerna clean",
"build": "lerna run build",
"check": "lerna run check",
"release": "lerna version --exact && git push --follow-tags"
},
"devDependencies": {
"babel-jest": "^22.0.4",
"babel-preset-shopify": "^16.2.0",
"eslint": "^4.10.0",
"eslint-plugin-shopify": "^19.0.1",
"jest": "^23.6.0",
"lerna": "^3.11.0",
"lerna-changelog": "^0.7.0",
"prettier": "^1.7.4",
"prettier-stylelint": "^0.4.2",
"stylelint": "^9.1.2",
"stylelint-config-shopify": "^5.0.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false
},
"workspaces": [
"packages/*"
]
}