-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 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
71
72
{
"name": "ikon",
"version": "1.0.0",
"description": "A tool for building icon spritesheets",
"author": {
"name": "Oliver Turner",
"email": "[email protected]",
"url": "https://www.oliverturner.cloud"
},
"repository": {
"url": "[email protected]:oliverturner/ikon.git"
},
"homepage": "https://ikon.oliverturner.cloud",
"keywords": [
"svelte",
"prettier",
"svg-icons",
"filesystem"
],
"main": "src",
"types": "typings",
"dependencies": {
"dragselect": "2.3.0",
"fuzzysearch-ts": "1.0.3",
"svelte": "^3.46.2"
},
"devDependencies": {
"@babel/preset-env": "7.16.10",
"@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.1",
"@testing-library/svelte": "^3.0.3",
"@tsconfig/svelte": "^3.0.0",
"@types/dragselect": "1.13.1",
"@types/jest": "27.4.0",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"babel-jest": "27.4.6",
"eslint": "8.7.0",
"eslint-plugin-svelte3": "3.4.0",
"jest": "^27.4.7",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"prettier-plugin-svelte": "2.6.0",
"rollup": "2.64.0",
"rollup-plugin-css-only": "3.1.0",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-svelte": "7.1.0",
"rollup-plugin-terser": "^7.0.0",
"sass": "1.49.0",
"sirv-cli": "2.0.2",
"svelte": "^3.0.0",
"svelte-check": "^2.3.0",
"svelte-jester": "2.1.5",
"svelte-preprocess": "4.10.2",
"ts-jest": "27.1.3",
"tslib": "2.3.1",
"typescript": "^4.5.4"
},
"scripts": {
"check": "svelte-check --tsconfig ./tsconfig.json",
"build:app": "rollup -c",
"build": "run-s build:*",
"dev": "rollup -c -w",
"start": "sirv public --no-clear",
"test": "jest",
"lint": "eslint --fix src/**/*.{ts,svelte}",
"format": "prettier --write src/**/*.{ts,svelte}",
"test:watch": "npm t -- --watch"
}
}