-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "clmm-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",
"test": "echo \"Error: no test specified\" && exit 1",
"ts-node": "ts-node",
"postinstall": "tsc",
"watch-node": "nodemon dist/index.js",
"watch-ts": "tsc -w",
"deploy": "git add . && git commit -m Heroku && git push heroku master",
"start": "tsc && nodemon src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.3.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@project-serum/serum": "^0.13.65",
"@raydium-io/raydium-sdk": "^1.3.0-beta.20",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"nodemon": "^2.0.22"
}
}