-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "hang-tight-parent-monorepo",
"version": "0.0.0",
"description": "Pure CSS loaders",
"main": "index.css",
"styles": "index.css",
"repository": "[email protected]:schne324/hang-tight.git",
"author": "Harris Schneiderman <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/parcel-bundler": "^1.12.1",
"@types/react": "^16.9.38",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"react": "^16.13.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,css,md,ts,tsx}": [
"prettier --write"
]
},
"scripts": {
"build": "lerna run build",
"postinstall": "lerna bootstrap",
"dev": "lerna run --parallel dev",
"fmt": "prettier --write 'packages/docs/**/*.{css,js,tsx}' 'packages/styles/**/*.css' 'packages/react/**/*.{js,tsx}' *.{js,json,md}",
"lint": "eslint ."
}
}