-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.67 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
79
80
81
82
83
84
{
"name": "numba",
"private": true,
"version": "1.1.0",
"description": "Figma plugin for easy numbering with 1-click",
"scripts": {
"type": "tsc --noEmit",
"test": "uvu -r esbuild-register ./src/lib/utils \".*.test.ts\"",
"lint": "eslint .",
"storybook": "storybook dev -p 6006",
"prettier": "prettier --check \"**\"",
"build-storybook": "storybook build",
"build:main": "esbuild src/main.ts --outfile=dist/code.js --bundle",
"build:ui": "vite build",
"prebuild": "node -e 'fs.rmSync(`dist`, { recursive: true, force: true })'",
"build": "concurrently -c yellow,blue -P \"npm:build:* -- {*}\" -- --minify",
"dev": "concurrently -k -c yellow,blue -P \"npm:build:* -- {*}\" -- --watch",
"test-storybook": "test-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monstar-lab-group/ia-screen-spec.git"
},
"contributors": [
"Jinma Yamashita",
"Yuta Hidaka"
],
"bugs": {
"url": "https://github.com/monstar-lab-group/ia-screen-spec/issues"
},
"homepage": "https://github.com/monstar-lab-group/ia-screen-spec#readme",
"dependencies": {
"clsx": "1.2.1",
"fast-deep-equal": "3.1.3",
"solid-js": "1.7.5"
},
"devDependencies": {
"@storybook/docs-tools": "7.1.1",
"@babel/core": "7.18.10",
"@figma/plugin-typings": "1.51.0",
"@mdx-js/react": "1.6.22",
"@storybook/addon-essentials": "7.0.22",
"@storybook/addon-interactions": "7.0.22",
"@storybook/addon-links": "7.0.22",
"@storybook/blocks": "7.0.22",
"@storybook/test-runner": "0.10.0",
"@storybook/testing-library": "0.1.0",
"@tailwindcss/forms": "^0.5.3",
"@trivago/prettier-plugin-sort-imports": "3.3.0",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "5.36.0",
"@typescript-eslint/parser": "5.36.0",
"autoprefixer": "10.4.14",
"babel-loader": "8.2.5",
"chromatic": "6.17.4",
"concurrently": "7.3.0",
"esbuild": "0.15.1",
"esbuild-register": "3.3.3",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-storybook": "^0.6.12",
"postcss": "8.4.27",
"postcss-import": "14.1.0",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.1.13",
"react": "18.2.0",
"react-dom": "18.2.0",
"storybook": "7.1.1",
"storybook-solidjs": "1.0.0-beta.2",
"storybook-solidjs-vite": "1.0.0-beta.2",
"tailwindcss": "3.3.3",
"typescript": "5.1.6",
"typescript-plugin-css-modules": "3.4.0",
"uvu": "0.5.6",
"vite": "4.4.7",
"vite-plugin-singlefile": "0.12.0",
"vite-plugin-solid": "2.7.0"
},
"packageManager": "[email protected]",
"engines": {
"node": "18.x",
"pnpm": "8"
}
}