This repository has been archived by the owner on Jun 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.71 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": "@hadmean/protozoa",
"version": "1.0.26",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Ayobami Akingbade",
"module": "dist/protozoa.esm.js",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "jest --detectOpenHandles --runInBand",
"typecheck": "tsc",
"test:cov": "jest --coverage",
"lint": "eslint --ext ts,tsx src",
"lint:fix": "eslint --fix",
"prepublishOnly": "tsdx build",
"setup-husky": "husky install",
"verify": "npm run typecheck && npm run lint && npm run test && npm run build"
},
"dependencies": {
"@types/lodash": "^4.14.182",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.9.7",
"@types/ramda": "0.27.40",
"@types/react": "^18.0.11",
"@types/uuid": "^8.3.4",
"date-fns": "^2.28.0",
"final-form": "^4.20.7",
"immer": "9.0.3",
"lodash": "^4.17.21",
"nanoid": "^4.0.0",
"next": "12.3.1",
"nprogress": "^0.2.0",
"qs": "^6.11.0",
"ramda": "0.27.1",
"randomstring": "^1.2.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-hot-toast": "^2.2.0",
"react-query": "3.39.2",
"uuid": "^8.3.2",
"zustand": "3.4.2"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@hadmean/eslint-config": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.19.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"prettier": "^2.7.1",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=16"
},
"sideEffects": false
}