-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.46 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.46 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
{
"version": "2.5.27",
"name": "survey-pdf",
"scripts": {
"start": "npm run build && http-server --port=7777",
"serve": "http-server --port=7777",
"test": "vitest run --coverage",
"test:update-snapshots": "vitest run --mode update-snapshots",
"test:watch": "vitest --no-isolate",
"release": "standard-version --message \"Release: %s [azurepipelines skip]\" ",
"doc_gen": "node doc_generator/lib_docgenerator.js src/entries/pdf.ts src/entries/forms.ts",
"doc_update": "chmod +x ./docupdate_npm.sh && ./docupdate_npm.sh",
"build:all": "npm run build && npm run build:fonts && npm run build:forms",
"build": "rollup -c --environment emitMinified,emitNonSourceFiles",
"build:fonts": "rollup -c rollup.fonts.config.mjs --environment emitMinified",
"build:forms": "rollup -c rollup.forms.config.mjs --environment emitMinified",
"watch:dev": "rollup -c -w",
"lint": "eslint ./src --quiet",
"pre-push-check": "npm run lint && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/surveyjs/survey-pdf.git"
},
"dependencies": {
"@types/node-fetch": "^2.6.13",
"image-size": "^2.0.2",
"jspdf": "^4.0.0",
"node-fetch": "^2",
"node-interval-tree": "^1.3.3",
"survey-core": "latest"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@stylistic/eslint-plugin": "^3.1.0",
"@types/lodash": "4.14.121",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitest/coverage-v8": "^4.1.5",
"concurrently": "^5.2.0",
"dotenv": "4.0.0",
"eslint": "^8",
"eslint-plugin-surveyjs": "git+https://github.com/surveyjs/eslint-surveyjs.git",
"eslint-plugin-unused-imports": "^2",
"generate-json-webpack-plugin": "0.2.1",
"http-server": "^14.1.1",
"husky": "^2.7.0",
"jsdom": "^29.1.1",
"rimraf": "2.5.4",
"rollup": "^4.34.8",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-license": "^3.6.0",
"standard-version": "^9.5.0",
"surveyjs-doc-generator": "git+https://github.com/surveyjs/surveyjs-doc-generator.git",
"ts-loader": "^9.5.2",
"tslib": "^2.8.1",
"typescript": "^5.7.0",
"vitest": "^4.1.5"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push-check"
}
}
}