This repository has been archived by the owner on Nov 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
96 lines (96 loc) · 2.22 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
{
"author": "Allen Goodman",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
]
},
"bugs": {
"url": "https://github.com/piximi/store/issues"
},
"dependencies": {
"@piximi/types": "^0.1.8",
"@reduxjs/toolkit": "^1.1.0",
"localforage": "^1.7.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.6.3",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.23",
"@types/node": "^12.7.12",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/redux-logger": "^3.0.7",
"@types/redux-persist": "^4.3.1",
"axios": "^0.19.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.0",
"husky": "^2.4.1",
"jest": "^24.9.0",
"jest-enzyme": "^7.0.2",
"lint-staged": "^8.2.1",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"eslintConfig": {
"extends": "react-app"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"preset": "ts-jest",
"setupFilesAfterEnv": [
"./src/setupTests.ts"
],
"testEnvironment": "node"
},
"license": "MIT",
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --single-quote --write",
"git add"
]
},
"main": "./dist/index.js",
"name": "@piximi/store",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/piximi/store.git"
},
"scripts": {
"build": "rm -rf ./dist && tsc -p ./tsconfig.json",
"precommit": "lint-staged",
"test": "jest"
},
"sideEffects": false,
"types": "./dist/index.d.ts",
"version": "0.2.2"
}