-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
177 lines (177 loc) · 5.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "np.plugins",
"packageName": "noteplan-cli",
"info": "noteplan plugin development toolbox",
"version": "3.20.0",
"build": "031500",
"description": "noteplan-cli",
"repository": "https://github.com/NotePlan/plugins",
"contributors": [
{
"name": "Eduard Metzger",
"email": "[email protected]",
"url": "https://github.com/NotePlan"
},
{
"name": "Jonathan Clark",
"url": "https://github.com/jgclark"
},
{
"name": "Naman Goel",
"url": "https://github.com/nmn"
},
{
"name": "David Wertheimer",
"url": "https://github.com/dwertheimer"
},
{
"name": "Mike Erickson",
"email": "[email protected]",
"url": "https://github.com/mikeerickson"
}
],
"license": "MIT",
"main": "index.js",
"bin": {
"noteplan-cli": "index.js",
"np-cli": "index.js",
"npc": "index.js"
},
"engines": {
"node": ">=12.15.0"
},
"keywords": [
"note",
"noteplan",
"notion",
"obsidian",
"plugins",
"roam",
"tracking"
],
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7.14.3",
"@babel/generator": "^7.18.2",
"@babel/parser": "^7.18.4",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.13.13",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.0.4",
"concurrently": "^6.2.0",
"documentation": "^13.2.5",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-no-floating-promise": "^1.0.2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unused-imports": "1.1.5",
"flow-bin": "^0.245.0",
"inquirer": "^8.1.0",
"jest": "27.5.1",
"jest-silent-reporter": "^0.5.0",
"jest-spec-reporter": "1.0.17",
"mkdirp": "^1.0.4",
"prettier": "^2.3.0",
"rollup": "^2.48.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.9.0",
"simple-input": "^1.0.1"
},
"scripts": {
"init": "node ./tasks/init.js",
"build": "NODE_OPTIONS=--max-old-space-size=8192 node scripts/rollup.js --build",
"build:minified": "NODE_OPTIONS=--max-old-space-size=8192 node scripts/rollup.js --build --minify",
"build:compact": "NODE_OPTIONS=--max-old-space-size=8192 node scripts/rollup.js --build --compact",
"autowatch": "NODE_OPTIONS=--max-old-space-size=8192 node scripts/rollup.js",
"autowatch:compact": "NODE_OPTIONS=--max-old-space-size=8192 node scripts/rollup.js --compact",
"release": "node scripts/releases.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"format": "prettier -w ./**/*.js ./**/**/*.js ./**/**/**/*.js",
"typecheck": "flow check",
"fix": "npm run lint-fix && npm run format",
"test": "jest **/*.test.js",
"test:ci": "./node_modules/.bin/jest ./**/__tests__/*.test.js --ci --reporters=default --reporters='./github-actions-reporter'",
"test:compact": "jest **/*.test.js --reporters jest-silent-reporter --reporters ./jest.customSummaryReporter.js",
"test:dev": "./node_modules/.bin/jest ./**/__tests__/*.test.js --silent",
"test:watch": "./node_modules/.bin/jest ./**/__tests__/*.test.js --silent --watchAll",
"security": "npm run security:high && npm run security:critical",
"security:high": "npm audit | grep -B 1 -A 10 high",
"security:critical": "npm audit | grep -B 1 -A 10 critical",
"dev": "node ./tasks/start.js",
"start": "node ./tasks/start.js",
"docs": "./node_modules/.bin/documentation build helpers/*.js -c docs/documentation.cfg.json -o docs -f html --shallow --document-exported --theme docs/theme; open docs/index.html",
"flow": "flow"
},
"prettier": {
"printWidth": 180,
"parser": "flow",
"semi": false,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@codedungeon/gunner": "0.77.0",
"@samverschueren/stream-to-observable": "0.3.1",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babelify": "^10.0.0",
"bcrypt": "5.0.1",
"bqpjs": "^0.1.1",
"browserify": "^17.0.0",
"bump-regex": "4.1.0",
"chroma-js": "^2.4.2",
"chrono-node": "^2.6.3",
"clipboardy": "3.0.0",
"columnify": "^1.6.0",
"commander": "^8.1.0",
"contentful-html-rich-text-converter": "1.0.9",
"date-fns": "^2.23.0",
"dayjs": "1.10.6",
"enquirer": "^2.3.6",
"fast-glob": "^3.2.12",
"findup-sync": "4.0.0",
"front-matter": "4.0.2",
"fsevents": "^2.3.2",
"fuse.js": "^6.5.3",
"git-state": "4.1.0",
"html-minifier": "^4.0.0",
"js-yaml": "^4.1.0",
"json5": "^2.2.0",
"listr": "0.14.3",
"lodash": "4.17.21",
"lodash-es": "^4.17.21",
"mathjs": "^11.0.1",
"mermaid": "^10.1.0",
"moment": "2.29.1",
"moment-business-days": "1.2.0",
"node-gyp": "^9.3.1",
"node-notifier": "10.0.0",
"plotly.js-dist-min": "^2.32.0",
"progress": "2.0.3",
"react": "^18.2.0",
"react-circular-progressbar": "^2.1.0",
"react-data-table-component": "^7.5.3",
"react-day-picker": "^8.10.1",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-loader-spinner": "^5.3.4",
"react-select": "^5.8.0",
"rxjs": "6.6.7",
"showdown": "^1.9.1",
"split": "1.0.1",
"sprintf-js": "1.0.3",
"strftime": "0.10.0",
"toml": "^3.0.0"
}
}