-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "lit-shop",
"version": "1.0.0",
"author": "Oliver Yasuna",
"license": "BSD-3-Clause",
"private": true,
"type": "module",
"workspaces": [
"./packages/*"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "npx nx run-many --target clean",
"build": "npx nx run-many --target build",
"test:functions": "jest --selectProjects @lit-shop/functions"
},
"dependencies": {
"lit": "^3.0.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@lerna-lite/cli": "^2.6.0",
"@lerna-lite/run": "^2.6.0",
"@types/node": "^18.18.3",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nx": "^17.0.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.0"
},
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"packageManager": "pnpm@8.6.12"
}