-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.31 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
{
"name": "barker",
"version": "0.1.0",
"description": "Starter kit for an SCSS-based design system",
"repository": "https://github.com/woylie/barker",
"author": "Mathias Polligkeit",
"license": "MIT",
"type": "module",
"scripts": {
"build:dev": "pnpm run build:tokens && node build.js --development",
"build:dev:watch": "pnpm run build:tokens && node build.js --watch",
"build:prod": "pnpm run build:tokens && node build.js --production",
"build:tokens": "node style-dictionary.js",
"lint": "pnpm run lint:prettier && pnpm run lint:stylelint",
"lint:fix": "pnpm run lint:prettier:fix && pnpm run lint:stylelint:fix",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:stylelint": "stylelint src/css",
"lint:stylelint:fix": "stylelint src/css --fix"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^7.0.2",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"esbuild": "^0.24.2",
"esbuild-sass-plugin": "^3.3.1",
"postcss": "^8.5.1",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"style-dictionary": "^4.3.0",
"stylelint": "^16.13.2",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-declaration-strict-value": "^1.10.7"
}
}