-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "steveo",
"version": "1.0.0",
"description": "Steveo Monorepo",
"directories": {
"doc": "docs"
},
"dependencies": {
"debug": "4.4.0",
"mocha": "10.2.0",
"sinon": "^15.2.0",
"ts-node": "10.9.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@ordermentum/eslint-config-ordermentum": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-turbo": "^2.4.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-jsx-no-leaked-values": "^0.1.24",
"eslint-plugin-mocha": "^10.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unicorn": "^56.0.0",
"mocha": "10.2.0",
"prettier": "^2.8.3",
"turbo": "1.13.4",
"typescript": "5.1.3"
},
"scripts": {
"build": "yarn run turbo run build --filter=steveo --filter=@steveojs/scheduler-prisma --filter=@steveojs/scheduler-sequelize && yarn run turbo run build --filter=!steveo --parallel",
"lint": "yarn run turbo run lint --parallel",
"test": "yarn run turbo run test",
"release": "yarn build && changeset version && changeset publish"
},
"workspaces": [
"packages/*"
],
"packageManager": "yarn@1.22.22",
"repository": {
"type": "git",
"url": "git+https://github.com/ordermentum/steveo.git"
},
"author": "",
"private": true,
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ordermentum/steveo/issues"
},
"homepage": "https://github.com/ordermentum/steveo#readme",
"lint-staged": {
"*.{ts,js,jsx}": [
"eslint --fix --max-warnings 0 --no-ignore"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}