-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 966 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 966 Bytes
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
{
"name": "monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">= 18",
"npm": ">= 8"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/preset-env": "^7.22.4",
"@dogmalang/core": "^1.0.0-rc18.0",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.62.0",
"c8": "^7.14.0",
"chai": "^4.3.7",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"lerna": "^7.0.0",
"mocha": "^10.1.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"scripts": {
"clean": "npm run env -ws -- rm -rf node_modules/",
"bootstrap": "npm run clean && npm i -ws",
"build": "npm run -ws build",
"test": "npm run -ws test",
"cov": "npm run -ws cov"
}
}