-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"name": "pump.fun-2022",
"version": "1.0.0",
"description": "",
"license": "ISC",
"scripts": {
"lint": "concurrently \"npx prettier --check '**/*.{js,jsx,ts,tsx,json,.*}'\" \"npx eslint . --max-warnings=0\"",
"lint:fix": "npx eslint . --fix",
"prettier": "concurrently \"npx prettier -w '**/*.{js,jsx,ts,tsx,json,.*}'\"",
"prepare": "husky",
"test": "anchor test --skip-local-validator",
"skip": "anchor test --skip-local-validator --skip-build --skip-deploy"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@solana/spl-token": "^0.4.9",
"husky": "^9.0.11",
"@solana/web3.js": "^1.95.4"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/jest": "^29.5.14",
"@types/mocha": "^9.1.1",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"ts-mocha": "^10.0.0",
"typescript": "^4.3.5",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prettier": "^3.2.4",
"tsx": "^4.7.1"
}
}