-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "svelte-rtk",
"version": "1.1.0",
"description": "Redux Toolkit for Svelte",
"author": "Gustavo Konrad <g.konrad@outlook.com>",
"license": "MIT",
"module": "dist/index.js",
"svelte": "dist/index.js",
"typings": "dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"dev": "tsc -p tsconfig.json",
"build": "tsc -p tsconfig.build.json",
"pub": "np",
"docs": "ts-docs src/index.ts"
},
"devDependencies": {
"@reduxjs/toolkit": "^1.8.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/svelte": "^3.1.1",
"@ts-docs/default-docs-structure": "^0.2.5",
"@ts-docs/ts-docs": "^0.2.5",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.12.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-functional": "^4.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"jest": "^27.4.7",
"np": "^7.6.0",
"svelte": "^3.47.0",
"svelte-eslint-parser": "^0.15.0",
"svelte-jester": "^2.3.2",
"svelte-preprocess": "^4.10.6",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tsutils": "^3.21.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"@reduxjs/toolkit": "^1.8.0",
"svelte": "^3.47.0"
}
}