forked from pdfme/pdfme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.21 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
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": "root",
"version": "0.0.0",
"private": true,
"author": "hand-dot",
"license": "MIT",
"keywords": [
"pdf",
"pdf-generation",
"pdf-designer",
"pdf-viewer",
"typescript",
"react"
],
"description": "TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!",
"homepage": "https://pdfme.com",
"repository": {
"type": "git",
"url": "[email protected]:pdfme/pdfme.git"
},
"bugs": {
"url": "https://github.com/pdfme/pdfme/issues"
},
"workspaces": [
"packages/common",
"packages/schemas",
"packages/generator",
"packages/ui"
],
"scripts": {
"postinstall": "./scripts/link-workspaces.sh",
"clean": "npm-run-all --parallel clean:*",
"clean:common": "npm run -w packages/common clean",
"clean:schemas": "npm run -w packages/schemas clean",
"clean:generator": "npm run -w packages/generator clean",
"clean:ui": "npm run -w packages/ui clean",
"build": "npm run clean && npm run build:common && npm run build:schemas && npm-run-all --parallel build:generator build:ui",
"build:common": "npm run -w packages/common build",
"build:schemas": "npm run -w packages/schemas build",
"build:generator": "npm run -w packages/generator build",
"build:ui": "npm run -w packages/ui build",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"prettier": "npm run prettier --workspaces"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-loader": "^8.2.2",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-jest-resolver": "^2.0.0",
"ts-loader": "^9.2.5",
"ts-prune": "^0.10.3",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"air-datepicker": "^3.5.3",
"chartjs-node-canvas": "^4.1.6",
"date-fns": "^4.1.0"
}
}