-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "tresor-import",
"version": "1.0.0",
"description": "Creates Tresor One activities from PDF statements of brokers",
"main": "src/index.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"start": "npm run build && serve & npm run watch",
"test": "jest --verbose",
"lint": "eslint .",
"precommit": "pretty-quick --staged --no-restage && npm run lint && npm t && npm audit"
},
"keywords": [
"tresor",
"one",
"pdf",
"import"
],
"author": "Sumit Kumar",
"license": "MIT",
"dependencies": {
"date-fns": "^2.12.0",
"lodash": "^4.17.15",
"pdfjs-dist": "^2.3.200"
},
"devDependencies": {
"@babel/preset-env": "^7.9.5",
"babel-jest": "^25.4.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"jest-cli": "^25.4.0",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"serve": "^11.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}