-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
80 lines (80 loc) · 2.63 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
{
"name": "ledger-obsidian",
"version": "0.3.3",
"description": "Plain text accounting",
"main": "main.js",
"scripts": {
"fix-parser": "sed -i -e \"s/import moo from 'moo'/const moo = require('moo')/\" grammar/ledger.ts",
"test": "yarn run compile-parser && yarn fix-parser && jest",
"test-watch": "yarn fix-parser && jest --watchAll",
"dev": "rollup --config rollup.config.js -w",
"build": "yarn run compile-parser && rollup --config rollup.config.js --environment BUILD:production",
"prettier": "prettier --write 'src/**/*.+(ts|tsx|json|html|css)'",
"eslint": "eslint . --ext .ts,.tsx --fix",
"compile-parser": "nearleyc grammar/ledger.ne -o grammar/ledger.ts",
"nearley-test": "nearley-test"
},
"keywords": [],
"author": "Tony Grosinger",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-node-resolve": "11.0.1",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "8.1.0",
"@types/chartist": "0.11.1",
"@types/jest": "26.0.18",
"@types/lodash": "4.14.168",
"@types/moo": "0.5.4",
"@types/nearley": "2.11.1",
"@types/node": "^14.14.2",
"@types/react": "17.0.37",
"@types/react-dom": "17.0.11",
"@types/react-table": "7.7.9",
"@types/styled-components": "5.1.15",
"@typescript-eslint/eslint-plugin": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"babel": "6.23.0",
"eslint": "7.12.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.3",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-simple-import-sort": "5.0.3",
"jest": "26.6.3",
"jest-mock-extended": "1.0.10",
"moment": "2.29.1",
"nearley": "2.20.1",
"obsidian": "https://github.com/obsidianmd/obsidian-api/archive/5687a75ecfdb78b6a832127cf6f9229e27e196a0.tar.gz",
"rollup": "2.35.1",
"ts-jest": "26.4.4",
"typescript": "^4.0.3"
},
"dependencies": {
"@popperjs/core": "2.9.2",
"chartist": "0.11.4",
"formik": "2.2.9",
"fuse.js": "6.4.6",
"intro.js": "4.3.0",
"intro.js-react": "0.5.0",
"lodash": "4.17.21",
"monkey-around": "2.2.0",
"moo": "0.5.1",
"neverthrow": "3.0.0",
"react": "^17.0.2",
"react-chartist": "0.14.4",
"react-dom": "^17.0.2",
"react-popper": "^2.2.5",
"react-table": "7.7.0",
"styled-components": "5.3.3",
"tslib": "^2.3.1",
"yarn": "1.22.17"
},
"resolutions": {
"styled-components": "^5"
}
}