This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.4 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "google-domains-ddns-updater",
"description": "UI for Google Domains DDSN Updater Server",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/StevenWeathers/google-domains-ddns-updater.git"
},
"author": "Steven Weathers <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/StevenWeathers/google-domains-ddns-updater/issues"
},
"homepage": "https://github.com/StevenWeathers/google-domains-ddns-updater#readme",
"scripts": {
"build": "rollup --config build/rollup.config.js",
"autobuild": "rollup --config build/rollup.config.js -w",
"dev": "run-p start:dev autobuild",
"test": "jest web/__test__/unit",
"test:watch": "npm run test -- --watch",
"test:integration": "jest -c web/__test__/integration/jest.config.js",
"test:integrationWithWatch": "jest -c web/__test__/integration/jest.config.js --watch",
"test:integrationProd": "cross-env APP_URL='https://answer-storm.dev' jest -c web/__test__/integration/jest.config.js",
"format": "prettier --write --plugin-search-dir=. 'web/**/*'"
},
"dependencies": {
"navaid": "^1.2.0",
"svelte-i18n": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-node-resolve": "^13.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/svelte": "^3.1.3",
"autoprefixer": "^10.4.7",
"babel-jest": "^28.1.2",
"cssnano": "^5.1.12",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"postcss-nesting": "^10.1.10",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"rollup": "^2.76.0",
"rollup-plugin-bundle-html": "^0.2.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.49.0",
"svelte-jester": "^2.3.2",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.2.7"
},
"optionalDependencies": {
"fsevents": "^1.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80,
"proseWrap": "always",
"tabWidth": 4,
"useTabs": false,
"bracketSpacing": true,
"semi": false,
"arrowParens": "avoid",
"svelteSortOrder": "options-scripts-styles-markup",
"svelteStrictMode": true
},
"jest": {
"transform": {
"^.+\\.svelte$": "jest-transform-svelte",
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"svelte"
],
"testPathIgnorePatterns": [
"node_modules"
],
"bail": false,
"verbose": true,
"transformIgnorePatterns": [
"node_modules"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"web/**/*.{js, svelte, css, html}": [
"npm run format",
"git add"
]
}
}