generated from JDBar/jwc-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "jwc-mediapipe",
"version": "1.0.0",
"description": "A minimal TypeScript repo integrating Google Mediapipe ",
"author": "Joseph Barron (Joseph Writes Code)",
"website": "http://josephwritescode.com",
"license": "MIT",
"main": "dist/index.mjs",
"type": "module",
"scripts": {
"start": "node dist/index.mjs",
"dev": "tsx watch --clear-screen=false ./src/index.mts",
"build": "pkgroll",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postinstall": "./bin/_postinstall.bash",
"prettier": "prettier --write .",
"pretty-quick": "pretty-quick --staged"
},
"dependencies": {
"@fastify/static": "^7.0.1",
"@mediapipe/tasks-vision": "^0.10.10",
"fastify": "^4.24.3",
"lodash": "^4.17.21",
"modern-normalize": "^2.0.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-webpack5": "^7.6.17",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-storybook": "^0.8.0",
"pkgroll": "^2.0.1",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"storybook": "^7.6.17",
"storybook-addon-sass-postcss": "^0.2.0",
"tsx": "^4.1.4",
"typescript": "^5.2.2",
"typescript-plugin-css-modules": "^5.1.0"
}
}