-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.33 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": "sextant-monorepo",
"version": "0.0.1",
"workspaces": [
"packages/*"
],
"license": "MIT",
"homepage": "https://docs.sextant.tools",
"private": true,
"scripts": {
"core": "yarn workspace @sextant-tools/core",
"frontend": "yarn workspace sextant",
"ts": "yarn workspace @sextant-tools/plugin-javascript-operations",
"docs": "yarn workspace @sextant-tools/docs",
"fe": "yarn frontend",
"build": "tsc -b ./tsconfig.monorepo.json",
"dev": "yarn build --watch",
"codegen:machines": "xstate-codegen \"./!(node_modules)/!(node_modules)/**/**.machine.ts\" --once",
"postinstall": "npm run build && npm run codegen:machines",
"plugin:dev": "concurrently \"yarn dev\" \"yarn fe dev:codegen\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"prettier": {
"arrowParens": "always",
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2
},
"dependencies": {
"@babel/plugin-transform-typescript": "7.12.1",
"@changesets/cli": "^2.11.1",
"concurrently": "^5.3.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"prettier": "^1.19.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"xstate-codegen": "^0.2.0"
}
}