-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "furphy",
"description": "Monorepo for packages and refreshingly good tooling",
"workspaces": [
"packages/*"
],
"private": true,
"author": "Carl Hamilton <[email protected]>",
"homepage": "https://github.com/cahamilton/furphy#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cahamilton/furphy.git"
},
"scripts": {
"lerna": "lerna",
"clean": "lerna run clean",
"build": "lerna run build --verbose",
"test": "yarn --frozen-lockfile --check-files && lerna run test",
"version": "lerna version --conventional-commits --no-changelog --yes"
},
"devDependencies": {
"@cahamilton/eslint-config": "*",
"@cahamilton/prettier-config": "*",
"@cahamilton/stylelint-config": "*",
"@types/eslint": "^8.2.0",
"@types/jest": "^27.0.2",
"@types/prettier": "^2.2.1",
"eslint": "^8.2.0",
"globby": "^11.0.1",
"jest": "^27.3.1",
"lerna": "^6.0.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"styled-components": "^5.2.1",
"stylelint": "^14.0.0",
"ts-jest": "^27.0.7",
"typescript": "^4.0.0"
},
"eslintConfig": {
"extends": "@cahamilton/eslint-config"
},
"prettier": "@cahamilton/prettier-config"
}