-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.54 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.54 KB
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
{
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "lerna run build",
"start": "npm run build && lerna run start --parallel",
"test": "jest",
"release": "npm run build && npm run changeset publish",
"changeset": "changeset",
"clear": "find . -name node_modules -type d -prune -exec rm -rf '{}' + && find . -name dist -type d -prune -exec rm -rf '{}' +",
"prettier:check": "prettier --check .",
"prettier": "prettier --write .",
"generate-all-docs": "node docs-generator/generate-all-docs.js",
"demo": "cd packages/demo && npm run dev:emulator",
"demo:testnet": "cd packages/demo && npm run dev:testnet"
},
"name": "fcl-js",
"devDependencies": {
"@babel/preset-typescript": "^7.25.7",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.27.9",
"@types/jest": "^29.5.13",
"@types/node": "^18.19.57",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"handlebars": "^4.7.8",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^9.0.3",
"prettier": "^3.3.3",
"prettier-plugin-classnames": "^0.7.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"ts-jest": "^29.2.5",
"ts-morph": "^21.0.1",
"typescript": "^5.6.3"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "^17.3.2",
"@nx/nx-darwin-x64": "^17.3.2",
"@nx/nx-linux-x64-gnu": "^17.3.2",
"@nx/nx-win32-x64-msvc": "^17.3.2"
},
"dependencies": {
"@noble/hashes": "^1.7.1"
}
}