forked from zendesk/copenhagen_theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "jobberhelp_2019_theme",
"version": "1.0.0",
"description": "ZenDesk theme for 2019 support site",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run build:css"
}
},
"lint-staged": {
"./**/*.js": [
"npm run lint:js",
"git add"
],
"./**/*.(css|scss)": [
"npm run build:css",
"npm run lint:styles",
"git add"
]
},
"scripts": {
"lint:js": "eslint './**/*.js'",
"lint:styles": "stylelint './**/*.scss'",
"lint": "npm run lint:js && npm run lint:styles",
"build:css": "./bin/compile.rb && postcss ./style-ugly.css > ./style.css && echo 'style-ugly.css minified as style.css' "
},
"repository": {
"type": "git",
"url": "git+https://github.com/GetJobber/jobber-marketing-theme-2019.git"
},
"homepage": "https://github.com/GetJobber/help_theme_2019#readme",
"dependencies": {
"node-fetch": "^2.1.2"
},
"stylelint": {
"extends": [
"@zendeskgarden/stylelint-config",
"stylelint-config-property-sort-order-smacss"
],
"rules": {
"no-descending-specificity": null,
"at-rule-no-unknown": null,
"selector-no-qualifying-type": null,
"property-no-vendor-prefix": null
}
},
"devDependencies": {
"@jobber/eslint-config": "^0.4.1",
"@zendeskgarden/stylelint-config": "^12.0.0",
"cssnano": "^4.1.10",
"eslint": "^6.7.2",
"husky": "^3.1.0",
"js-yaml": "^3.13.1",
"lint-staged": "^9.5.0",
"postcss-cli": "^6.1.3",
"stylelint": "^12.0.0",
"stylelint-config-property-sort-order-smacss": "^5.2.0",
"stylelint-order": "^3.1.1",
"typescript": "^3.7.3"
}
}