-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 961 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 961 Bytes
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
{
"name": "formater",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lintfix": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:tsc",
"build:tsc": "tsc -p .",
"start-dev": "ts-node src/index.ts",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^10.0.0",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.175",
"@types/node": "^16.11.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}