forked from unstoppabledomains/uauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "root",
"private": true,
"version": "1.0.0",
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@unstoppabledomains/resolution": "^7.1.2",
"check-node-version": "^4.2.1",
"dotenv": "^16.0.0",
"dotenv-cli": "^5.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"lint-staged": "^12.3.3",
"microbundle": "^0.14.2",
"npm-run-all": "^4.1.5",
"release-it": "^14.12.4",
"semver": "^7.3.5",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"scripts": {
"release": "sh release.sh",
"prebuild": "rm -fR packages/*/build/",
"build": "yarn workspaces foreach --no-private --topological-dev run build",
"typecheck": "yarn workspaces foreach --no-private run typecheck",
"prepublishOnly": "yarn build"
}
}