-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.47 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.47 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "timeletter_fe",
"version": "0.1.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"app": "yarn workspace @timeletter_fe/app",
"components": "yarn workspace @timeletter_fe/components",
"docker-start:all": "yarn workspaces foreach --parallel -i run start",
"start:all": "concurrently --kill-others \"yarn app start\" \"yarn components start\"",
"test:all": "yarn workspaces foreach --parallel run test",
"lint:all": "yarn workspaces foreach --parallel run lint",
"format:all": "yarn workspaces foreach --parallel run format",
"build:all": "yarn workspaces foreach --parallel run build",
"prepare": "husky install",
"lint-staged": "lint-staged",
"prepush": "prepush-if-changed",
"build:storybook": "yarn components build",
"build:app": "yarn app build",
"start:storybook": "yarn components start",
"start:app": "yarn app start"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
],
"packages/components/src/assets/icons": [
"yarn components svgo:icons"
],
"packages/components/src/assets/images": [
"yarn components svgo:images"
]
},
"prepush-if-changed": {
"packages/**/src": "yarn test:all --watchAll=false --maxWorkers=50%"
},
"dependencies": {
"concurrently": "^7.3.0",
"react-snowfall": "^1.2.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.19.0",
"eslint-config-airbnb": "latest",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prepush-if-changed": "^1.0.8",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5"
},
"packageManager": "yarn@3.2.1",
"engines": {
"node": ">16.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}