-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.63 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
{
"name": "redux-database",
"version": "0.0.19",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nerdgeschoss/redux-database.git"
},
"scripts": {
"build": "yarn build:js && yarn build:types",
"build:js": "NODE_ENV=production rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"build:docs": "rm -rf docs && typedoc --out docs --mode library --theme minimal src/index.ts",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"lint": "yarn lint:types && yarn lint:style && yarn lint:format",
"lint:types": "tsc --noEmit",
"lint:style": "eslint './src/**/*.{tsx,ts}' --max-warnings 0",
"lint:format": "prettier --check \"**/*.{js, json}\"",
"test": "jest",
"release": "yarn build && yarn version --patch && git push --tags && yarn publish --non-interactive"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.5.2",
"prettier": "^2.0.5",
"rollup": "^2.7.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"typedoc": "^0.17.0-3",
"typescript": "^3.8.3"
}
}