-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.1 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
43
44
45
46
47
48
{
"name": "@bancacfplus/digital-invoice-to-pdf",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"registry": "https://artifactory.bancacfplus.it/artifactory/api/bancacf-npm/"
},
"files": [
"dist"
],
"scripts": {
"dev": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"husky": "^1.3.1",
"prettier": "1.16.0",
"pretty-quick": "^1.10.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.4",
"nodemon": "^1.18.10",
"ts-node": "^8.0.2"
},
"dependencies": {
"@react-pdf/renderer": "^1.4.1",
"@types/react": "^16.8.8",
"@types/xml2js": "^0.4.3",
"react": "^16.8.4",
"ts-optchain": "^0.1.3",
"xml2js": "^0.4.19"
},
"resolutions": {
"fsevents": "2.3.0"
}
}