-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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": "datamodels",
"private": true,
"workspaces": [
"models/*",
"shapes/*"
],
"type": "module",
"scripts": {
"lint": "lerna run lint --parallel",
"prepare": "lerna run prepare",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)"
},
"devDependencies": {
"@ceramicnetwork/common": "^2.0.0",
"@glazed/devtools": "^0.2.0",
"@skypack/package-check": "^0.2.2",
"@swc/cli": "^0.1.51",
"@swc/core": "^1.2.136",
"@swc/jest": "^0.2.17",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"del-cli": "^4.0.1",
"dids": "^3.0.0",
"eslint": "^8.8.0",
"eslint-config-3box": "^0.4.0",
"jest": "^27.2.4",
"jest-environment-ceramic": "^0.15.0",
"json-schema-to-typescript": "^10.1.5",
"key-did-resolver": "^2.0.0",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.(t|j)s$": [
"@swc/jest"
]
}
}
}