-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·53 lines (53 loc) · 1.49 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
{
"name": "@lander/lander-monorepo",
"version": "0.0.1",
"description": "A VDOM engine made for the modern web",
"private": true,
"scripts": {
"publish": "lerna publish",
"build": "lerna run build",
"docs": "lerna run docs",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"lint": "lerna run lint",
"clean": "lerna run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minivera/lander.git"
},
"author": "Minivera",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.22.15",
"@testing-library/jest-dom": "^6.1.3",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"cross-env": "^7.0.3",
"dts-bundle-generator": "^8.0.1",
"esbuild": "^0.19.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom-sixteen": "^2.0.0",
"lerna": "^7.3.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.1",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
}
}