-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.71 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
{
"name": "matico",
"version": "1.0.0",
"description": "Matico monorepo of parts",
"main": "index.js",
"repository": "[email protected]:stuartlynn/matico_spec_test.git",
"author": "Stuart Lynn <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"./matico_spec",
"./matico_components",
"./matico_types",
"./matico_admin",
"./matico_app_server",
"./matico_charts",
"./editor"
],
"devDependencies": {
"@types/node": "^14.11.2",
"concurrently": "^7.3.0",
"husky": "8.0.2",
"next": "12.2.0",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"typescript": "~4.7.0"
},
"nohoist": [
"**/webpack**",
"**/babel-loader**"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"predeploy": "pnpm run build",
"start": "concurrently \"cd matico_components && pnpm start\" \"cd editor && pnpm start\" ",
"dev-editor": "concurrently \"cd matico_components && pnpm build-dev\" \"cd editor && pnpm start\" ",
"build": "pnpm --filter @maticoapp/matico_charts run build-prod && pnpm --filter @maticoapp/matico_components build-prod && (cd matico_app_server && pnpm prisma generate && pnpm build )",
"deploy": "pnpm predeploy && pnpm run netlify deploy --prod",
"build_rust_docs": "cargo doc --open --document-private-items --no-deps",
"postinstall": "husky install",
"prettier-check": "pnpm prettier --check '**/*.{js,ts,jsx,tsx}'",
"prettier-write": "pnpm prettier --write '**/*.{js,ts,jsx,tsx}'",
"prettier-staged": "pnpm pretty-quick --staged",
"rust-format": "cargo +nightly fmt -- --check; cargo +nightly fmt"
},
"packageManager": "^[email protected]",
"dependencies": {
"concurrently": "^7.3.0"
}
}