generated from League-of-Foundry-Developers/FoundryVTT-Module-Template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 2.2 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
{
"name": "fvtt-syrin-control",
"version": "1.0.0",
"description": "Syrinscape Online synchronization and control for Foundry VTT",
"repository": "[email protected]:frondeus/fvtt-syrin-control.git",
"author": "Wojciech Polak <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "npx vite build",
"dev": "npx vite serve --https",
"check": "svelte-check --tsconfig ./tsconfig.json --ignore ./libs/*",
"check:watch": "npm run check -- --watch",
"format": "prettier --write --plugin-search-dir=. .",
"format:check": "prettier --plugin-search-dir=. --check .",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --changedSince=origin/next --coverage --watch",
"prepare": "husky install"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@cypress/vite-dev-server": "^5.0.2",
"@league-of-foundry-developers/foundry-vtt-types": "^9.280.0",
"@sveltejs/vite-plugin-svelte": "^2.0.2",
"@swc/core": "^1.3.27",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@tsconfig/svelte": "^3.0.0",
"@types/cypress": "^1.1.3",
"@types/jest": "^29.2.6",
"@types/lodash": "^4.14.191",
"@types/papaparse": "^5.3.7",
"@types/testing-library__jest-dom": "^5.14.5",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"babel-jest": "^29.3.1",
"cypress": "^12.3.0",
"glob": "^9.3.4",
"husky": "^8.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.5.0",
"jquery": "^3.6.4",
"json-server": "^0.17.1",
"prettier": "^2.8.3",
"prettier-plugin-svelte": "^2.9.0",
"svelte": "^3.55.1",
"svelte-check": "^3.0.2",
"svelte-jester": "^2.3.1",
"svelte-preprocess": "^5.0.1",
"svelte-select": "^5.1.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"unplugin-swc": "github:frondeus/unplugin-swc",
"vite": "4.0.4",
"vite-plugin-checker": "^0.5.4",
"vite-tsconfig-paths": "^4.0.5"
},
"dependencies": {
"blakejs": "^1.2.1",
"lodash": "^4.17.21",
"papaparse": "^5.3.2",
"reflect-metadata": "^0.1.13",
"syrinscape": "file:libs/syrinscape",
"tsyringe": "^4.7.0"
}
}