-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 1.89 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "fnd",
"private": true,
"workspaces": [
"packages/*"
],
"peerDependencies": {
"@babel/runtime": "^7.x"
},
"devDependencies": {
"@babel/register": "^7.25.9",
"@toruslabs/config": "^2.2.0",
"@toruslabs/eslint-config-typescript": "^3.3.4",
"@toruslabs/torus-scripts": "^6.1.5",
"@types/mocha": "^10.0.9",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"wait-port": "^1.1.0"
},
"version": "1.1.0",
"main": "index.js",
"scripts": {
"just:publish:lerna": "lerna publish",
"wait": "wait-port 8060",
"test": "cross-env FORCE_COLOR=1 lerna run test --parallel",
"server:dev": "docker compose -f docker-compose.dev.yml up --build",
"server:detach": "docker compose -f docker-compose.dev.yml up --build --detach",
"test:ci": "npm run server:detach && wait-port 8060 && sleep 20 && npm run test",
"build": "cross-env FORCE_COLOR=1 lerna run --stream build",
"pack:lerna": "lerna exec -- rimraf toruslabs-*.tgz && lerna exec -- yarn pack",
"bootstrap": "lerna bootstrap",
"publish:lerna": "yarn clean && yarn bootstrap && lerna publish",
"lint": "cross-env FORCE_COLOR=1 lerna run lint --parallel",
"pre-commit": "lerna run pre-commit",
"dev": "cross-env FORCE_COLOR=1 lerna run --stream dev",
"clean": "lerna clean --yes && lerna exec -- rimraf package-lock.json yarn.lock dist/ .rts2_cache_{cjs,esm}/",
"prepare": "husky"
},
"lint-staged": {
"*": "lerna run --concurrency 1 --stream --since HEAD --exclude-dependents pre-commit -- "
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
},
"author": "",
"license": "MIT",
"description": ""
}