-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.28 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.28 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "billbook-api",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start:dev": "nodemon",
"start": "npm run build && node build/app.js",
"lint": "eslint . --ext .ts",
"prettier-format": "run-script-os",
"prettier-format:win32": "prettier --config .prettierrc \"./src/**/*.ts\" --write",
"prettier-format:darwin:linux": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-format:default": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-watch": "run-script-os",
"prettier-watch:win32": "onchange \"src/**/*.ts\" -- prettier --write {{changed}}",
"prettier-watch:darwin:linux": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"prettier-watch:default": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"test": "jest",
"test:dev": "jest --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint && npm run build"
}
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^17.0.8",
"@types/papaparse": "^5.3.1",
"@types/parallel-transform": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.31.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-shopify": "^35.1.0",
"nodemon": "^2.0.12",
"onchange": "^7.1.0",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"run-script-os": "^1.1.6",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/mysql": "^2.15.20",
"async": "^3.2.2",
"body-parser": "^1.19.1",
"csv": "^6.0.5",
"csv-parser": "^3.0.0",
"dotenv": "^10.0.0",
"eslint-plugin-jest": "^24.3.6",
"express": "^4.17.2",
"fast-csv": "^4.3.6",
"husky": "^4.3.8",
"jest": "^27.0.6",
"mysql": "^2.18.1",
"papaparse": "^5.3.1",
"parallel-transform": "^1.2.0",
"strip-bom-stream": "^5.0.0",
"ts-jest": "^27.0.3"
}
}