-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
81 lines (81 loc) · 1.97 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
76
77
78
79
80
81
{
"name": "camjackson.net",
"version": "0.0.1",
"description": "My personal website",
"repository": {
"type": "git",
"url": "https://github.com/camjackson/camjackson.net.git"
},
"author": "Cam Jackson",
"license": "GPL-3.0",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public",
"test": "jest --watch"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^5.0.2",
"@testing-library/jest-dom": "^5.11.1",
"@testing-library/svelte": "^3.0.0",
"@tsconfig/svelte": "^1.0.0",
"@types/jest": "^26.0.7",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"autoprefixer": "^9.8.5",
"eslint": "^7.7.0",
"eslint-plugin-jest-dom": "^3.1.7",
"eslint-plugin-testing-library": "^3.6.0",
"husky": ">=4",
"jest": "^26.1.0",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"prettier-plugin-svelte": "^1.1.0",
"rollup": "^2.3.4",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-postcss": "^3.1.3",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.49.0",
"svelte-check": "^1.0.20",
"svelte-jester": "^1.0.6",
"svelte-preprocess": "^4.0.0",
"tailwindcss": "^1.5.2",
"ts-jest": "^26.1.4",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"dependencies": {
"sirv-cli": "^1.0.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && svelte-check"
}
},
"lint-staged": {
"*.{js,ts,css,md,svelte}": "prettier --write",
"*.{js,ts}": "eslint"
},
"jest": {
"transform": {
"^.+\\.svelte$": [
"svelte-jester",
{
"preprocess": true
}
],
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts",
"svelte"
],
"setupFilesAfterEnv": [
"./src/setupTests.ts"
]
}
}