-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·35 lines (35 loc) · 958 Bytes
/
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
{
"name": "decoco",
"version": "1.0.0",
"private": true,
"description": "An efficient Web Component framework based on decorator-driven development",
"main": "index.js",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky",
"lint": "eslint './packages/**/*.{ts,tsx}'",
"test": "playwright test && playwright show-report",
"test:ui": "playwright test --ui"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@playwright/test": "^1.48.2",
"@types/node": "^20.11.30",
"@types/react": "^18.2.70",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lerna": "^8.1.2",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
}
}