-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 1.6 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
{
"name": "solana-suite",
"version": "0.4.6",
"private": true,
"scripts": {
"clean": "npm run clean -ws && rm -rf packages/shared/node_modules/ && rm -rf packages/core/node_modules/ && rm -rf packages/nft/node_modules/ && rm -rf packages/phantom/node_modules/",
"compile": "npm run compile -ws && npm run compile:esm -ws",
"lint": "npx eslint --fix packages/core/src && npx eslint --fix packages/shared/src && npx eslint --fix packages/nft/src && npx eslint --fix packages/phantom/src",
"test:all": "npm run test:shared && npm run test:nft && npm run test:core && npm run test:phantom",
"test:shared": "npm run test:all -w packages/shared",
"test:nft": "npm run test:all -w packages/nft",
"test:core": "npm run test:all -w packages/core",
"test:phantom": "npm run test:all -w packages/phantom",
"postinstall": "npm dedupe"
},
"workspaces": [
"packages/shared",
"packages/core",
"packages/nft",
"packages/phantom"
],
"overrides": {
"@metaplex-foundation/mpl-token-metadata": "2.2.4"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@tsconfig/node18": "^1.0.1",
"@tsconfig/recommended": "^1.0.1",
"@types/bs58": "^4.0.1",
"@types/chai": "^4.2.21",
"@types/jsdom": "^20.0.0",
"@types/mocha": "^8.2.3",
"@types/node": "^14.17.5",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"chai": "^4.3.4",
"eslint": "^8.25.0",
"jsdom": "^20.0.0",
"mocha": "^9.2.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.7.0",
"tslib": "^1.14.1",
"typescript": "^4.8.4"
}
}