forked from bluesky-social/atproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "atp",
"version": "0.0.1",
"repository": "[email protected]:bluesky-social/atproto.git",
"author": "Bluesky PBLLC <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"prepublish": "yarn build",
"verify": "lerna run verify --stream",
"prettier": "lerna run prettier",
"build": "lerna run build",
"test": "NODE_ENV=development lerna run test --stream"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@types/jest": "^28.1.4",
"@types/node": "^15.6.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.1.2",
"dotenv": "^16.0.3",
"esbuild": "^0.14.48",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.2",
"lerna": "^4.0.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"pino-pretty": "^9.1.0",
"prettier": "^2.7.1",
"prettier-config-standard": "^5.0.0",
"serve-handler": "^6.1.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"tsconfig-paths-jest": "^0.0.1",
"typescript": "^4.8.4",
"wait-on": "^5.3.0"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/ipld-hashmap",
"**/ipld-hashmap/**",
"**/better-sqlite3",
"**/better-sqlite3/**"
]
}
}