-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "pdf-generator",
"version": "0.1.0",
"homepage": "https://github.com/jelovirt/pdf-generator",
"license": "Apache-2.0",
"scripts": {
"build": "npm run compile && parcel build public/index.html",
"compile": "./compile.sh",
"start": "parcel public/index.html",
"fmt": "prettier --write .",
"test": "jest src/**/*.test.ts",
"integration-test": "jest test/*.test.ts"
},
"dependencies": {
"elementtree": "^0.1.7",
"file-saver": "^2.0.2",
"formik": "^2.2.5",
"jquery": "^3.5.1",
"jszip": "^3.5.0",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@types/elementtree": "^0.1.0",
"@types/file-saver": "^2.0.1",
"@types/follow-redirects": "^1.13.0",
"@types/jest": "^26.0.15",
"@types/jquery": "^3.5.4",
"@types/lodash": "^4.14.164",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"bootstrap-sass": "~> 3.4.1",
"follow-redirects": "^1.13.1",
"jest": "^26.6.3",
"node-forge": ">=0.10.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.1.2",
"sass": "^1.28.0",
"saxon-js": "^2.1.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"xslt3": "^2.1.0"
}
}