-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.23 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
{
"name": "nfid",
"private": false,
"scripts": {
"build": "echo '💀 DONT REMOVE THIS 💀'",
"build-ci": "turbo build",
"build-package": "turbo build --scope",
"build-docs": "turbo build --force --filter='@nfid/docs'",
"build-playground:dev": "dotenv -e .env.dev -- turbo run build --force --filter='@nfid/react-dapp' --filter='@nfid/react-signer'",
"build-playground:ic": "dotenv -e .env.ic -- turbo run build --force --filter='@nfid/react-dapp' --filter='@nfid/react-signer'",
"playground": "dotenv -- turbo run dev --force --filter='@nfid/react-dapp' --filter='@nfid/react-signer'",
"dev": "turbo dev",
"lint:check": "turbo lint:check",
"format:check": "prettier --check '**/*.{ts,tsx,md,mdx,css}'",
"test": "turbo test",
"prepare": "husky",
"lint-staged": "turbo lint-staged"
},
"devDependencies": {
"@nfid/eslint-config": "*",
"@nfid/typescript-config": "*",
"dotenv-cli": "latest",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "^3.3.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"turbo": "latest",
"typescript": "^5.4.5"
},
"workspaces": [
"config/*",
"docs",
"examples/*",
"packages/*"
]
}