-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 2.39 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 2.39 KB
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
{
"name": "solidr",
"version": "1.0.0",
"scripts": {
"lint-all": "yarn workspaces foreach -Apt run lint",
"lint-fix-all": "yarn workspaces foreach -Apt run lint-fix",
"clean-all": "yarn workspaces foreach -Apt run clean",
"compile-all": "yarn workspaces foreach -At run compile",
"clean-compile-all": "yarn workspaces foreach -Apt run clean-compile",
"test-all": "yarn workspaces foreach -Apt -j 1 run test",
"g:clean": "cd $INIT_CWD && rimraf",
"g:lint": "cd $INIT_CWD && yarn run g:lint",
"g:lint-fix": "cd $INIT_CWD && yarn run g:lint-fix",
"g:compile": "cd $INIT_CWD && echo $INIT_CWD && tsc -v && tsc --pretty",
"g:compile-watch": "cd $INIT_CWD && tsc --pretty -w",
"g:clean-compile": "cd $INIT_CWD && yarn run clean && yarn run compile",
"g:clean-lint-compile": "cd $INIT_CWD && yarn g:clean && yarn g:lint && yarn g:compile",
"g:depcheck": "cd $INIT_CWD && depcheck",
"g:mocha": "cd $INIT_CWD && mocha",
"g:tsc": "cd $INIT_CWD && tsc",
"g:ts-mocha": "cd $INIT_CWD && ts-mocha",
"g:prettier": "cd $INIT_CWD && prettier \"**/*.{js,jsx,ts,tsx}\" --check",
"g:prettier-fix": "cd $INIT_CWD && prettier \"**/*.{js,jsx,ts,tsx}\" -w",
"prepare": "husky"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/lodash": "^4.17.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.11",
"@yarnpkg/cli": "^4.2.2",
"@yarnpkg/core": "^4.0.5",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"husky": "^9.0.11",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"solana-test-validator-docker": "^1.0.18",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "git@github.com/tchambard/solana-training.git"
},
"author": "teddy.chambard@gmail.com",
"license": "MIT",
"workspaces": [
"packages/programs/*",
"packages/fronts/*"
],
"resolutions": {
"@types/react": "18.3.1",
"moment": "2.24.0",
"@trezor/connect-web": "9.2.2",
"@ledgerhq/errors": "6.16.3",
"@solana/web3.js": "1.94.0"
},
"overrides": {
"@ledgerhq/errors": "6.16.3"
},
"packageManager": "yarn@4.2.2"
}