-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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": "pooly-cards",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm",
"scripts": {
"dev": "turbo run dev --no-cache --parallel --continue",
"build": "turbo run build",
"compile": "turbo run compile",
"test": "turbo run test",
"start": "turbo run start",
"app:dev": "turbo run app:dev --no-cache --parallel --continue",
"app:build": "turbo run app:build",
"app:start": "turbo run app:start",
"app:export": "turbo run app:export",
"package:build": "turbo run package:build",
"package:watch": "turbo run package:watch",
"export:github": "turbo run export:github",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"docs": "turbo run docs",
"docs:html": "turbo run docs:html",
"clean": "yarn clean:turbo",
"clean:turbo": "yarn turbo run clean && rm -rf node_modules",
"clean:watchman": "watchman watch-del-all && yarn cache clean"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"nohoist": [
"**/styled-jsx-plugin-postcss",
"eslint-config-prettier",
"hardhat",
"pooly-cards-sol",
"hardhat-abi-exporter",
"hardhat-deploy",
"hardhat-deploy-ethers",
"hardhat-deploy-ganache",
"hardhat-gas-reporter",
"hardhat-log-remover"
]
},
"devDependencies": {
"prettier": "^1.19.1",
"turbo": "latest"
}
}