-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.26 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
{
"name": "microlith",
"private": true,
"license": "UNLICENSED",
"workspaces": [
"client",
"server"
],
"scripts": {
"lint:eslint": "eslint --fix",
"lint:markdownlint": "markdownlint",
"lint:prettier": "prettier --with-node-modules --write --loglevel warn",
"lint:stylelint": "stylelint",
"lint:all:eslint": "yarn lint:eslint --ext .js,.svelte .",
"lint:all:markdownlint": "yarn lint:markdownlint '**/*.md'",
"lint:all:prettier": "yarn lint:prettier '**/*.{css,html,js,json,md,svelte,yaml}'",
"lint:all:stylelint": "yarn lint:stylelint '**/*.{css,html,svelte}'",
"lint": "run-s lint:all:*",
"wsrun": "dotenv -c ${ENV:-development} yarn workspaces run",
"dev": "yarn wsrun dev",
"build": "yarn wsrun build",
"deploy": "yarn wsrun deploy"
},
"dependencies": {
"dotenv-cli": "^3.2.0"
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"markdownlint-cli": "^0.23.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0.0"
}
}