forked from morfeojs/morfeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.79 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "root",
"private": true,
"author": {
"name": "Mauro Erta",
"email": "mauro@vlkstudio.com"
},
"scripts": {
"build": "turbo run build",
"build:docs": "turbo run build --filter=@morfeo/app-docs",
"build:packages": "turbo run build --filter=!@morfeo/app* --filter=!@morfeo/example*",
"build:web-extension": "turbo run build --filter=@morfeo/app-web-extension",
"deploy:web-extension": "turbo run deploy --filter=@morfeo/app-web-extension",
"postversion": "pnpm version:web-extension",
"prepare": "husky install",
"prettify": "pnpm prettify:js && pnpm prettify:ts",
"prettify:js": "prettier --write \"**/*.js\"",
"prettify:ts": "prettier --write \"**/*.ts\"",
"start:benchmarks": "turbo run all --filter=@morfeo/app-benchmarks",
"start:docs": "turbo run start --filter=@morfeo/app-docs",
"start:react-example": "turbo run start --filter=@morfeo/example-react",
"start:svelte-example": "turbo run dev --filter=@morfeo/example-svelte",
"test": "jest --detectOpenHandles",
"test:ci": "NODE_OPTIONS=--max-old-space-size=8192 jest --detectOpenHandles --coverage",
"test:coverage": "pnpm run test --coverage",
"test:watch": "pnpm run test --watch",
"version:packages": "changeset version && pnpm install --no-frozen-lockfile && pnpm version:web-extension && git add .",
"version:web-extension": "ts-node scripts/version-web-extension.ts",
"publish:packages": "pnpm build:packages && pnpm publish -r"
},
"dependencies": {
"@changesets/cli": "2.26.1",
"csstype": "3.1.1",
"next": "13.4.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.7"
},
"devDependencies": {
"@babel/preset-env": "7.22.9",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "17.6.6",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@types/glob": "8.1.0",
"@types/jest": "29.5.1",
"@types/node": "18.16.19",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"eslint": "8.39.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "5.2.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"prettier": "2.8.7",
"rimraf": "5.0.1",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tslib": "2.5.0",
"turbo": "1.10.7",
"typescript": "5.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/morfeojs/morfeo"
},
"homepage": "https://morfeo.dev",
"bugs": {
"url": "https://github.com/morfeojs/morfeo/issues"
},
"packageManager": "pnpm@8.6.3"
}