-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.71 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
{
"name": "spot-store",
"version": "0.0.1",
"description": "A simple redux client",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "babel src -d lib --extensions \".ts\"",
"lint": "eslint src/**/*.ts",
"gen:types": "tsc --declaration --emitDeclarationOnly --noEmit false --declarationDir lib",
"dev": "babel src -d lib --extensions \".ts\" --watch",
"test": "jest --watch --watchAll",
"test-ci": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgoemans/spot.git"
},
"keywords": [
"redux"
],
"author": "David Goemans",
"license": "SEE LICENSE IN LICENSE.MD",
"bugs": {
"url": "https://github.com/dgoemans/spot/issues"
},
"homepage": "https://github.com/dgoemans/spot#readme",
"dependencies": {
"deepmerge-ts": "4.2.2",
"es6-promise": "4.2.8",
"isomorphic-fetch": "3.0.0",
"redux": "4.0.5"
},
"devDependencies": {
"@babel/cli": "7.10.3",
"@babel/core": "7.10.3",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/preset-env": "7.10.3",
"@babel/preset-typescript": "7.12.1",
"@types/jest": "26.0.15",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"babel-eslint": "10.1.0",
"babel-jest": "26.1.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.7",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "26.1.0",
"jest-fetch-mock": "3.0.3",
"ts-jest": "26.4.3",
"typescript": "4.9.4"
}
}