-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.66 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": "skylark-apps",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"scripts": {
"prettier": "prettier . --write",
"prettier:check": "prettier . --check",
"prepare": "husky",
"lint:skylarktv": "cd packages/skylarktv && yarn lint",
"lint:ingestor": "cd packages/ingestor && yarn lint",
"lint:all": "yarn lint:skylarktv && yarn lint:ingestor",
"test:skylarktv": "cd packages/skylarktv && yarn test",
"test:ingestor": "cd packages/ingestor && yarn test",
"test:all": "yarn test:skylarktv && yarn test:ingestor",
"test:ci": "yarn test:skylarktv --ci --coverage && yarn test:ingestor --ci --coverage",
"tsc:skylarktv": "cd packages/skylarktv && yarn tsc",
"tsc:ingestor": "cd packages/ingestor && yarn tsc",
"tsc:all": "yarn tsc:skylarktv && yarn tsc:ingestor"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-storybook": "0.11.1",
"eslint-plugin-unused-imports": "4.1.4",
"husky": "9.1.7",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "3.4.16",
"typescript": "5.7.2"
}
}