generated from garronej/ts-ci
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·66 lines (66 loc) · 1.79 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
{
"name": "clean-architecture",
"version": "4.3.8",
"description": "Utilities for implementing clean architecture using Redux",
"repository": {
"type": "git",
"url": "git://github.com/garronej/clean-architecture.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"_format": "prettier '**/*.{ts,tsx,json,md}'",
"format": "npm run _format -- --write",
"format:check": "npm run _format -- --list-different",
"link-in-test-app": "ts-node --skipProject scripts/link-in-test-app.ts",
"start-demo-app": "yarn link-in-test-app && cd demo-app && yarn start",
"grant-exec-perms": "node dist/bin/tools/grant-exec-perms.js"
},
"lint-staged": {
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
"author": "u/garronej",
"license": "MIT",
"files": [
"src/",
"!src/test/",
"dist/",
"!dist/test/",
"!dist/tsconfig.tsbuildinfo"
],
"keywords": [
"clean-architecture",
"hexagonal",
"redux",
"typescript",
"react"
],
"homepage": "https://github.com/garronej/clean-architecture",
"peerDependencies": {
"evt": "^2.5.3"
},
"devDependencies": {
"@types/node": "^18.11.3",
"husky": "^4.3.8",
"lint-staged": "^11.1.1",
"prettier": "^2.8.8",
"ts-node": "^10.4.0",
"typescript": "5.0.2",
"evt": "^2.5.3",
"react": "^18.2.0",
"@types/react": "^18.2.73"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.6",
"minimal-polyfills": "^2.2.3",
"tsafe": "^1.7.2"
}
}