-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.01 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.01 KB
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
{
"name": "builtin.prettier-monorepo",
"version": "0.0.0-dev",
"description": "",
"type": "module",
"scripts": {
"postinstall": "lerna bootstrap --ci",
"test": "lerna run test",
"dev": "node ./node_modules/@lvce-editor/server/bin/server.js --only-extension=packages/extension --test-path=packages/e2e",
"type-check": "tsc -b",
"test:watch": "node --unhandled-rejections=warn --experimental-vm-modules ./node_modules/jest/bin/jest.js --watch",
"e2e": "cd packages/e2e && npm run e2e",
"e2e:headless": "cd packages/e2e && npm run e2e:headless",
"build": "node packages/build/src/build.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@lerna/legacy-package-management": "^8.2.4",
"@lvce-editor/server": "^0.69.1",
"@types/node": "^25.0.0",
"jest": "^30.2.0",
"lerna": "^8.2.3",
"prettier": "^4.0.0-alpha.10",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}