-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
38 lines (38 loc) · 978 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
36
37
38
{
"name": "blocky-editor",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=v16.0.0"
},
"scripts": {
"postinstall": "ts-patch install",
"prepare": "cp ./README.md ./packages/blocky-core",
"dev": "pnpm --filter blocky-example dev",
"build": "tsc --build .",
"watch": "tsc --build -w .",
"test:unit": "pnpm -r --if-present run test:unit",
"test:e2e": "playwright test",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.25.2",
"@types/lodash": "^4.14.201",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "^0.14.49",
"eslint": "^8.19.0",
"ts-patch": "^3.0.2",
"typescript": "^5.2.2",
"typescript-transform-paths": "^3.4.6"
},
"dependencies": {
"next": "13"
}
}