-
Notifications
You must be signed in to change notification settings - Fork 731
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 867 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 867 Bytes
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
{
"name": "@crowd/common",
"main": "src/index.ts",
"scripts": {
"lint": "npx eslint --ext .ts src --max-warnings=0",
"format": "npx prettier --write \"src/**/*.ts\"",
"format-check": "npx prettier --check .",
"tsc-check": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^18.16.3",
"typescript": "^5.6.3"
},
"dependencies": {
"@crowd/types": "workspace:*",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "~4.4.2",
"lodash.isarray": "^4.0.0",
"lodash.isequal": "^4.5.0",
"lodash.isplainobject": "^4.0.6",
"lodash.merge": "^4.6.2",
"lodash.mergewith": "^4.6.2",
"lodash.pick": "~4.4.0",
"lodash.set": "^4.3.2",
"lodash.sum": "^4.0.2",
"lodash.unionwith": "^4.6.0",
"moment-timezone": "^0.5.34",
"tldts": "^6.1.11",
"uuid": "^9.0.0",
"validator": "^13.15.20"
}
}