-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.52 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
{
"name": "@fatlook/root",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "npx lerna run build",
"graph": "npx nx graph",
"start": "concurrently 'npm run start:web' 'npm run start:mobile'",
"start:mobile": "cd packages/mobile && npm run watch",
"start:web": "cd packages/web && npm run watch",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"chokidar": "^3.5.3",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lerna": "^6.6.2",
"lint-staged": "^13.2.1",
"prettier": "^2.8.8",
"stylelint": "^15.6.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^3.0.0",
"stylelint-scss": "^5.0.0",
"typescript": "^5.0.4"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/mongoose",
"**/date-fns",
"**/date-fns/**",
"**/react-native",
"**/react-native/**",
"**/react-native-**"
]
}
}