-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.82 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
{
"name": "svelte-app",
"author": {
"name": "Anthony Williams",
"url": "https://github.com/Wolven531/svelte-temp"
},
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=16.12.0",
"npm": ">=8.1.0",
"yarn": ">=1.22.15"
},
"private": true,
"scripts": {
"build": "rollup -c",
"check": "svelte-check --tsconfig ./tsconfig.json",
"dev": "rollup -c -w",
"start": "sirv public --no-clear",
"start:host": "sirv public --no-clear --host",
"test": "jest --coverage --weatchAll=false",
"test:nocov": "jest --coverage=false --weatchAll=false",
"test:watch": "jest --coverage=false --weatchAll=true"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/svelte": "^3.0.3",
"@tsconfig/svelte": "^3.0.0",
"@types/jest": "^27.4.0",
"@types/testing-library__jest-dom": "^5.14.2",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-jest": "^27.0.0",
"jest": "^27.5.1",
"rollup": "^2.67.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.46.4",
"svelte-check": "^2.4.3",
"svelte-jester": "^2.0.1",
"svelte-preprocess": "^4.10.3",
"tslib": "^2.3.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"sirv-cli": "^2.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"svelte"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"testEnvironment": "jsdom",
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.svelte$": [
"svelte-jester",
{
"preprocess": true
}
],
"^.+\\.ts$": "ts-jest"
}
}
}