-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
38 lines (38 loc) · 1.16 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
{
"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 ."
},
"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",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"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"
}
}