-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.68 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
{
"name": "pullups",
"version": "1.0.0",
"description": "## Project: complete pullups tracking system",
"main": "index.js",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --parallel --continue",
"lint": "turbo run lint",
"test": "turbo run test",
"deploy": "turbo run deploy --scope=reports-react",
"clean": "yarn clean:turbo && yarn clean:modules",
"clean:all": "yarn clean && yarn clean:yarn",
"clean:turbo": "yarn turbo run clean",
"clean:modules": "rm -rf node_modules",
"clean:watchman": "watchman watch-del-all",
"clean:yarn": "yarn cache clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rek/pullups.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rek/pullups/issues"
},
"homepage": "https://github.com/rek/pullups#readme",
"dependencies": {
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"eslint-plugin-simple-import-sort": "^7.0.0",
"turbo": "latest"
},
"workspaces": {
"packages": [
"packages/*",
"apps/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/@react-native-*",
"**/@react-native-*/**",
"**/@react-navigation",
"**/@react-navigation/**",
"**/react-native-*",
"**/react-native-*/**",
"**/*react-navigation/native*",
"**/*react-navigation/native*/**",
"**/expo",
"**/expo/**",
"**/@expo",
"**/@expo/**",
"**/expo-*",
"**/expo-*/**",
"**/metro-*",
"**/metro-*/**"
]
},
"private": true
}