-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
84 lines (84 loc) · 2.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "santa-close-client",
"version": "1.0.0",
"repository": "https://github.com/santa-close/santa-close-client.git",
"author": "santa-close",
"private": true,
"scripts": {
"ds": "yarn workspace santa_close_design-system",
"frame": "yarn workspace santa_close_frame",
"map": "yarn workspace santa_close_map",
"app": "yarn workspace santa_close_app",
"common": "yarn workspace santa_close_common",
"build:ds": "yarn ds build",
"build:common": "yarn common build",
"build": "yarn build:ds && yarn build:common",
"dev:watch": "yarn ds dev & yarn common dev",
"dev:frame": "yarn frame dev",
"dev:map": "yarn map dev",
"dev:and": "yarn app and",
"dev:ios": "yarn app ios",
"dev:web": "node ./scripts/executeConcurrentlyDev.js",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"type-check": "lerna run make-types && yarn workspaces run type-check",
"lint": "yarn workspaces run lint --ignore-path ../../.gitignore",
"clean": "npx lerna clean -y && npx lerna run clean && rm -rf build node_modules",
"prepare": "husky install"
},
"dependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router-dom": "^5.3.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-jest": "^28.0.3",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-unicorn": "^42.0.0",
"husky": "^7.0.0",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
"lerna": "^4.0.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"ts-jest": "^28.0.1",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"concurrently": "^7.2.2"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**"
]
},
"lint-staged": {
"*.{ts,tsx,js}": [
"yarn lint"
]
},
"engines": {
"node": ">=16",
"yarn": ">=1.22"
}
}