-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.49 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
{
"name": "messenger-style",
"version": "1.0.0",
"author": "DeskPRO <[email protected]>",
"license": "BSD 3-Clause License",
"description": "Styling for for Deskpro Messenger",
"main": "index.js",
"scripts": {
"dev": "yarn postcss-build && concurrently --kill-others 'npm:postcss-watch' 'npm:init-website-watch' 'npm:docs-server'",
"build": "yarn postcss-build && yarn init-website-build && yarn docs-build",
"postcss-watch": "postcss -o dist/style.css --verbose -m -w --env development src/style.css",
"postcss-build": "postcss --verbose --env production -m -o dist/style.css src/style.css",
"init-website-watch": "cpx dist/style.css website/static/css --watch",
"init-website-build": "cpx dist/style.css website/static/css",
"docs-server": "cd website && yarn start",
"docs-build": "cd website && yarn build",
"lint": "stylelint \"src/**/*.css\"",
"lint-tryfix": "stylelint \"src/**/*.css\" --fix",
"install": "cd website && yarn install",
"precommit": "lint"
},
"devDependencies": {
"concurrently": "^8.2.0",
"contrast": "^1.0.1",
"cpx2": "^4.2.3",
"postcss": "8.4.31",
"postcss-autoreset": "3.1.0",
"postcss-cli": "^10.1.0",
"postcss-extend-rule": "^4.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.5.1",
"postcss-reporter": "^7.0.5",
"stylelint": "15.10.1",
"stylelint-config-suitcss": "19.0.0",
"stylelint-selector-bem-pattern": "3.0.0"
}
}