forked from Shopify/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "slate",
"private": true,
"author": "Shopify Inc.",
"version": "1.0.1-beta.0",
"description": "A theme scaffold and command line tool for developing Shopify themes.",
"keywords": [
"slate",
"shopify",
"theme",
"CLI"
],
"engine": ">=11.10.1",
"homepage": "https://github.com/henrybarn/slate/",
"bugs": "https://github.com/Shopify/slate/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/henrybarn/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-preset-shopify": "^21.0.0",
"eslint": "^6.8.0",
"eslint-plugin-shopify": "^35.0.0",
"jest": "^25.1.0",
"lerna": "^3.11.0",
"lerna-changelog": "^1.0.0",
"prettier": "^1.7.4",
"prettier-stylelint": "^0.4.2",
"stylelint": "^13.2.0",
"stylelint-config-shopify": "^7.4.0",
"webpack-cli": "^3.3.11"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false
},
"workspaces": [
"packages/*"
]
}