-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 970 Bytes
/
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
{
"name": "@mntnrs/ui",
"version": "1.0.0",
"private": true,
"description": "User Interfaces for MTNTR.Systems",
"main": "index.js",
"license": "MIT",
"workspaces": ["packages/*", "ui/*"],
"scripts": {
"test": "jest",
"precommit": "lint-staged",
"clean": "rm -rf **/*/(node_modules|.cache)"
},
"lint-staged": {
"*.{js,jsx}": ["prettier --parser babylon --write", "git add"],
"*.json": ["prettier --parser json --write", "git add"],
"*.{graphql,gql}": ["prettier --parser graphql --write", "git add"],
"*.{md,markdown}": ["prettier --parser markdown --write", "git add"],
"*.{mdx}": ["prettier --parser mdx --write", "git add"],
"*.{css,scss}": ["prettier --parser css --write", "git add"],
"*.{yaml,yml}": ["prettier --parser yaml --write", "git add"]
},
"devDependencies": {
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"palx": "^1.0.3",
"prettier": "^1.15.3",
"rimraf": "^2.6.2"
}
}