forked from kevboh/longform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "longform",
"version": "1.1.0",
"description": "Write novels, screenplays, and other long projects in Obsidian (https://obsidian.md).",
"main": "main.js",
"scripts": {
"lint": "svelte-check --tsconfig tsconfig.json && eslint . --ext .ts",
"dev": "rollup --config rollup.config.js -w",
"build": "npm run lint && rollup --config rollup.config.js --environment BUILD:production"
},
"keywords": [],
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@tsconfig/svelte": "^2.0.1",
"@types/lodash": "^4.14.171",
"@types/node": "^14.14.37",
"@types/sortablejs": "^1.10.7",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.29.0",
"obsidian": "^0.13.21",
"rollup": "^2.32.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-svelte": "^7.1.0",
"svelte-check": "^2.2.4",
"svelte-preprocess": "^4.7.3",
"tslib": "^2.3.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@popperjs/core": "^2.11.2",
"lodash": "^4.17.21",
"sortablejs": "^1.14.0",
"svelte": "^3.38.2"
}
}