This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "obsidian-chess",
"version": "1.1.3",
"description": "An Obsidian plugin for all your Chess related notes.",
"main": "/build/main.js",
"author": "pmorim",
"license": "MIT",
"keywords": [
"obsidian-plugin",
"chess"
],
"scripts": {
"build": "webpack --config webpack.config.js",
"dev": "webpack --config webpack.config.js -w",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/svelte": "^3.0.3",
"@tsconfig/svelte": "^2.0.1",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.2",
"babel-jest": "^27.2.5",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-plugin-svelte3": "^3.2.1",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"svelte": "^3.37.0",
"svelte-check": "^2.1.0",
"svelte-jester": "^2.1.5",
"svelte-loader": "^3.1.2",
"svelte-preprocess": "^4.9.8",
"ts-loader": "^9.2.6",
"tslib": "^2.2.0",
"typescript": "^4.3.2",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"lodash": "^4.17.21",
"obsidian": "^0.12.16",
"ts-jest": "^27.0.7"
}
}