-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
57 lines (57 loc) · 2.18 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
{
"name": "theme-tools",
"version": "1.0.0",
"description": "The Swiss Army Knife for Shopify Liquid themes. Everything you need in one handy monorepo!",
"main": "index.js",
"repository": "https://github.com/Shopify/theme-tools",
"author": "Albert Chu <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/lang-*",
"packages/codemirror-language-client",
"packages/liquid-html-parser",
"packages/prettier-plugin-liquid",
"packages/theme-check-*",
"packages/theme-language-server-*",
"packages/vscode-extension",
"packages/release-orchestrator"
],
"scripts": {
"admin:build": "sh ./scripts/dev-admin-build.sh",
"admin:init": "sh ./scripts/dev-admin-init.sh",
"build": "yarn workspaces run build",
"build:ci": "yarn workspaces run build:ci",
"build:ts": "yarn workspaces run build:ts",
"dev:web": "yarn --cwd packages/vscode-extension dev:web",
"format": "prettier --write \"packages/*/src/**/*.ts\"",
"format:check": "prettier --check --ignore-unknown \"packages/*/src/**/*.ts\"",
"playground": "yarn --cwd packages/codemirror-language-client run dev:playground",
"prebuild:ts": "rm -rf packages/*/dist",
"publish:vsce": "yarn --cwd packages/vscode-extension publish:vsce",
"release": "yarn workspace release-orchestrator run start",
"postrelease": "yarn --cwd packages/prettier-plugin-liquid prerelease",
"reset": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +",
"test": "vitest",
"theme-check": "node packages/theme-check-node/dist/cli.js",
"type-check": "yarn workspaces run type-check"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^22.1.0",
"prettier": "^2.8.4",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^4.9.3",
"vitest": "^2.1.1",
"vscode-languageserver-protocol": "^3.17.3",
"vscode-languageserver-textdocument": "^1.0.8",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
}
}