-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "pf-calculator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npx tsc",
"lint": "eslint .",
"prepare": "husky install",
"start": "rm -rf ./dist && npx tsc && ENV=local ts-node index.ts"
},
"repository": {
"type": "git",
"url": "github-techholding:Trigno97/PF-Calculator.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.1.0",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/prompt-sync": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"eslint": "^8.33.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"lodash": "^4.17.21",
"prompt-sync": "^4.2.0"
}
}