forked from onflow/fcl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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
{
"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 '{}' +"
},
"name": "fcl-js",
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.21.1",
"@types/jest": "^29.5.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lerna": "^8.0.0",
"prettier": "^2.6.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "^17.0.0",
"@nx/nx-darwin-x64": "^17.0.0",
"@nx/nx-linux-x64-gnu": "^17.0.0",
"@nx/nx-win32-x64-msvc": "^17.0.0"
}
}