-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 816 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 816 Bytes
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
{
"name": "@nft-geocaching/monorepo",
"version": "0.0.1",
"description": "nft-geocaching monorepo",
"author": "Volker Dufner <dufnervolker@gmail.com>",
"repository": "",
"license": "MIT",
"private": true,
"scripts": {
"anchor:build": "cd packages/anchor && npm run build",
"anchor:deploy": "cd packages/anchor && npm run deploy:dev",
"react-app:build": "cd packages/react-app && npm run build",
"react-app:start": "cd packages/react-app && npm run start",
"react-native-app:android": "cd packages/react-native-app && npm run android"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-native-app",
"**/react-native-app/**"
]
},
"dependencies": {
"prettier": "^2.7.0",
"eslint-plugin-prettier": "^4.0.0"
}
}