-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
52 lines (52 loc) · 1.37 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
{
"version": "0.0.0",
"engines": {
"node": ">=10.15.0"
},
"private": true,
"workspaces": [
"plugins/*"
],
"scripts": {
"dev": "rollup -c --configPlugin=swc3 -w",
"build": "rollup -c --configPlugin=swc3",
"lint": "tsc -p . --noEmit && svelte-check",
"fmt": "prettier --plugin-search-dir=. --write .",
"test": "jest"
},
"devDependencies": {
"@gplane/svelte-jest": "^0.1.0",
"@gplane/tsconfig": "^1.1.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@swc/core": "^1.3.28",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.1",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/testing-library__jest-dom": "^5.14.5",
"fast-glob": "^3.2.12",
"jest": "^26.4.2",
"prettier": "^2.8.3",
"prettier-plugin-svelte": "^2.9.0",
"rollup": "^3.10.1",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-swc3": "^0.8.0",
"svelte": "^3.55.1",
"svelte-check": "^1.0.26",
"svelte-preprocess": "^5.0.1",
"ts-jest": "^26.3.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2
}
}