-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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": "staking_rewards-system",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"start": "cross-env TS_NODE_BASEURL=./dist node -r tsconfig-paths/register dist",
"start:dev": "cross-env GOOGLE_APPLICATION_CREDENTIALS=credentials.json tsnd --respawn -r tsconfig-paths/register src",
"build": "yarn prebuild & tsc",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix",
"type-check": "tsc"
},
"devDependencies": {
"@types/node": "^18.7.1",
"cross-env": "^7.0.3",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"chalk": "^5.0.1",
"dotenv": "^16.0.1",
"husky": "^8.0.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}