-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
59 lines (59 loc) · 2.04 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
{
"scripts": {
"start": "npm run build_dev && live-server --port=7777",
"serve": "live-server --port=7777",
"test": "jest",
"test:update-snapshots": "jest --config ./jest.update_snapshots.config.js",
"testDev": "jest --watch",
"release": "standard-version --message \"Release: %s [azurepipelines skip]\" ",
"doc_gen": "node doc_generator/lib_docgenerator.js src/entries/pdf.ts",
"doc_update": "chmod +x ./docupdate_npm.sh && ./docupdate_npm.sh",
"build_dev": "webpack --env.buildType dev --env.platform pdf",
"build_prod": "npm run build_dev && webpack --env.buildType prod --env.platform pdf && npm run dts_clean",
"build_fonts": "webpack --config ./webpack.fonts.js --env.buildType dev && webpack --config ./webpack.fonts.js --env.buildType prod",
"dts_clean": "node dts_cleaner.js",
"lint": "eslint ./src --quiet",
"pre-push-check": "npm run lint && npm run build_prod && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/surveyjs/survey-pdf.git"
},
"version": "1.12.8",
"name": "survey-pdf",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"jspdf": "^2.3.1",
"node-interval-tree": "^1.3.3",
"survey-core": "latest"
},
"devDependencies": {
"jest-expect-message": "^1.1.3",
"@types/jest": "^23.3.3",
"@types/lodash": "4.14.121",
"@types/node": "7.0.4",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"dotenv": "4.0.0",
"dts-bundle": "0.7.2",
"eslint": "^7.32.0",
"generate-json-webpack-plugin": "0.2.1",
"husky": "^2.7.0",
"jest": "^23.6.0",
"jest-junit": "^16.0.0",
"live-server": "^1.2.2",
"rimraf": "2.5.4",
"standard-version": "^8.0.1",
"surveyjs-doc-generator": "git+https://github.com/surveyjs/surveyjs-doc-generator.git",
"ts-jest": "^23.10.3",
"ts-loader": "2.3.4",
"typescript": "^4.2.2",
"webpack": "2.2.1",
"webpack-merge": "^5.8.0"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push-check"
}
}
}