-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.57 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
{
"name": "@peak-ai/flashr",
"version": "1.1.0",
"main": "lib/index.js",
"module": "esm/index.js",
"description": "Redux flash messages handling made simple..",
"repository": "[email protected]:peak-ai/flashr.git",
"author": "Shailendara Gupta <[email protected]>",
"license": "BSD-3-Clause",
"scripts": {
"build": "yarn run clean && yarn run build:cjs && yarn run build:esm && yarn run build:dist",
"build:cjs": "tsc -p . -m CommonJS --outDir lib",
"build:esm": "tsc -p . -m ESNext --outDir esm",
"build:dist": "rollup -c",
"build:docs": "rm -rf docs && typedoc --name Flash src",
"clean": "rm -rf lib/ && rm -rf esm/ && rm -rf dist",
"format:check": "prettier --check src/**/*.ts",
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"tapable": "^1.1.3",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/tapable": "^1.0.5",
"@types/uuid": "^7.0.2",
"@types/react": "17.0.3",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"lint-staged": "^10.1.1",
"prettier": "^2.0.2",
"redux": "^4.0.5",
"rollup": "^2.3.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --cache --fix",
"eslint --cache"
]
}
}