-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
60 lines (60 loc) · 1.8 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
{
"name": "netless-app-monorepo",
"private": true,
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@hyrious/esbuild-plugin-svelte": "^0.1.7",
"@netless/window-manager": "1.0.0-canary.69",
"@sveltejs/vite-plugin-svelte": "2.0.2",
"@tsconfig/svelte": "^3.0.0",
"@types/randomcolor": "^0.5.6",
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"autoprefixer": "^10.4.8",
"cross-env": "^7.0.3",
"esbuild": "^0.16.11",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^7.0.4",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.1",
"prettier-plugin-svelte": "^2.9.0",
"rimraf": "^3.0.2",
"rollup-plugin-exclude-dependencies-from-bundle": "^1.1.22",
"rollup-plugin-peer-deps-external": "^2.2.4",
"sass": "^1.53.0",
"svelte": "^3.54.0",
"tailwindcss": "^3.1.7",
"typescript": "^4.9.4",
"typings": "workspace:0.1.0",
"vite": "^4.0.3",
"white-web-sdk": "2.16.48"
},
"scripts": {
"create-app": "node ./packages/create-app",
"prettier": "prettier --write .",
"lint": "eslint --ext .ts,.tsx,.svelte . && prettier --check .",
"preinstall": "npx only-allow pnpm",
"build-all": "pnpm -r build",
"build-all:dev": "pnpm -r build:dev",
"build-all:ci": "pnpm --aggregate-output -r build:dev",
"dev": "pnpm -F playground dev",
"start": "pnpm -F playground dev"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/core",
"@netless/window-manager",
"react",
"react-dom",
"rollup",
"vite"
]
}
}
}