-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "money-pane",
"version": "0.1.0",
"description": "Solid-compatible Panes: Money",
"main": "./lib/main.js",
"files": [
"src",
"lib",
"dist"
],
"scripts": {
"lint": "eslint '*.js'",
"lint-fix": "eslint '*.js' --fix",
"jest": "jest",
"test": "npm run lint; npm run jest",
"prepublishOnly": "npm test && npm run build && npm run build-lib",
"postpublish": "git push origin master --follow-tags",
"watch": "webpack --watch",
"start": "webpack serve",
"build": "webpack",
"build-lib": "babel src -d lib --source-maps --extensions '.ts,.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/money-pane"
},
"keywords": [
"solid",
"money",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"pane",
"app",
"data"
],
"author": "Michiel de Jong <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/money-pane/issues"
},
"homepage": "https://github.com/solid/money-pane",
"dependencies": {
"buffer": "^6.0.3",
"chart.js": "^3.5.1",
"crypto-browserify": "^3.12.0",
"luxon": "^2.0.2",
"mt940js": "^1.3.5",
"solid-ui": "^2.4.9-beta",
"stream-browserify": "^3.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.15.8",
"@babel/plugin-transform-runtime": "7.15.8",
"@babel/preset-env": "7.15.8",
"@babel/preset-typescript": "7.15.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"babel-loader": "8.2.2",
"eslint": "^7.32.0",
"html-webpack-plugin": "^4.5.2",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lint-staged": "11.2.3",
"path-browserify": "^1.0.1",
"standard": "16.0.4",
"ts-loader": "9.2.6",
"ts-node-dev": "^1.1.8",
"typescript": "4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "4.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}