generated from obsidian-community/obsidian-react-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.28 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
{
"name": "obsidian-react-starter",
"version": "0.0.0",
"description": "Obsidian + ReactJS",
"author": "liamcain",
"main": "main.js",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts",
"dev": "npm run lint && rollup -c",
"build:nolint": "NODE_ENV=production rollup -c",
"build": "NODE_ENV=production npm run lint && rollup -c",
"test": "jest",
"test:watch": "yarn test -- --watch"
},
"dependencies": {
"@types/react": "17.0.3",
"@types/react-dom": "17.0.2",
"obsidian": "obsidianmd/obsidian-api#master",
"react": "17.0.1",
"react-dom": "17.0.1",
"tslib": "2.1.0"
},
"devDependencies": {
"@babel/core": "7.13.8",
"@babel/preset-react": "7.12.13",
"@babel/preset-typescript": "7.13.0",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "17.1.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-typescript": "8.2.0",
"@rollup/plugin-node-resolve": "11.2.0",
"@rollup/plugin-replace": "2.4.1",
"@types/moment": "2.13.0",
"@types/node": "14.14.34",
"@types/papaparse": "5.2.5",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel": "6.23.0",
"eslint": "7.22.0",
"rollup": "2.41.2",
"typescript": "4.2.3"
}
}