-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "redux-store-generator",
"version": "0.9.90",
"description": "auto-generates a redux store",
"license": "MIT",
"scripts": {
"build": "tsc & vite build",
"test": "jest",
"watch": "nodemon -x \"npm run build\""
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "",
"devDependencies": {
"@jest/types": "^28.0.0",
"@types/chance": "^1.1.1",
"@types/jest": "^28.1.6",
"chance": "^1.1.7",
"jest": "^28.0.0",
"jest-cli": "^28.0.0",
"rollup-plugin-analyzer": "^4.0.0",
"shared-base": "^0.0.34",
"ts-jest": "^28.0.0",
"typescript": "^4.7.4",
"vite": "^3.0.3",
"vite-plugin-dts": "^1.7.1"
},
"dependencies": {
"reselect": "^4.1.6"
},
"files": [
"dist"
],
"main": "./dist/redux-store-generator.umd.js",
"module": "./dist/redux-store-generator.es.js",
"types": "./dist/dts/index.d.ts",
"exports": {
".": {
"import": "./dist/redux-store-generator.es.js",
"require": "./dist/redux-store-generator.umd.js"
}
}
}