-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
{
"name": "@qni/monorepo",
"private": true,
"version": "0.0.1",
"description": "Toy quantum simulator app.",
"author": "@yasuhito",
"repository": {
"type": "git",
"url": "git+https://github.com/qniapp/qni.git"
},
"license": "MIT",
"workspaces": [
"packages/common",
"packages/simulator",
"packages/elements",
"apps/www",
"apps/tutorial",
"examples/elements-example"
],
"scripts": {
"clean": "lerna run clean --stream",
"build": "lerna run build",
"pretty-quick": "pretty-quick",
"lint": "lerna run lint",
"typecheck": "lerna run typecheck",
"test": "lerna run test --stream",
"test:ci": "lerna run test:ci --stream",
"publish:patch": "yarn build && yarn test && lerna publish",
"docs": "lerna run docs",
"fix:style": "yarn run prettier ./packages/common/src --write && yarn run prettier ./packages/simulator/src --write && yarn run prettier ./packages/elements/src --write",
"prepare": "husky install",
"size": "lerna run size"
},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"@prettier/plugin-ruby": "~3.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.0.0",
"@size-limit/preset-small-lib": "^8.1.2",
"@tailwindcss/forms": "~0.5",
"@tailwindcss/typography": "^0.5.9",
"@types/eslint": "~8.21.0",
"@types/node": "^18.11.19",
"@types/postcss-import": "~14.0.0",
"@types/prettier": "~2.7.2",
"@typescript-eslint/eslint-plugin": "~5.51",
"@typescript-eslint/parser": "~5.51",
"autoprefixer": "~10.4",
"esbuild": "~0.18",
"eslint": "~8.33",
"eslint-config-prettier": "~8.6",
"eslint-plugin-github": "~4.6",
"husky": "^8.0.0",
"lerna": "~6.4",
"postcss": "~8.4",
"postcss-import": "~15.1",
"postcss-nested": "~6.0",
"postcss-preset-env": "^9.1.1",
"prettier": "~2.8",
"prettier-plugin-tailwindcss": "~0.2",
"pretty-quick": "^3.1.3",
"rollup": "~3.21.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^5.1.1",
"size-limit": "^8.1.2",
"tailwindcss": "~3.2",
"typedoc": "~0.23",
"typescript": "~4.9",
"typesync": "^0.10.0"
},
"dependencies": {}
}