-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "paperclip-ui",
"version": "19.0.1",
"private": true,
"description": "Aerial is a virtual browser for visually creating web applications.",
"repository": {
"type": "git",
"url": "git+https://github.com/paperclip-ui/paperclip.git"
},
"workspaces": {
"packages": [
"libs/*",
"integrations/*"
],
"installConfig": {
"hoistingLimits": true
}
},
"main": "index.js",
"author": "",
"license": "ISC",
"scripts": {
"test": "yarn workspaces foreach run test",
"lint": "eslint packages/*/src/**/*.ts",
"sync-versions": "node scripts/sync-version.js",
"precommit": "lint-staged",
"clean": "git clean -fXd; yarn; yarn prepare; cargo build; cd libs/cli && cargo build",
"build": "cd libs/designer && mkdir -p dist & cd ../..; cargo build; lerna run build --concurrency=1; cd libs/cli; cargo build",
"build:watch": "concurrently \"lerna run build:watch --parallel\" \"cargo watch -x build\"",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@typescript-eslint/parser": "^1.3.0",
"concurrently": "^7.5.0",
"eslint": "^5.13.0",
"husky": "^7.0.0",
"lerna": "^7.2.0",
"lint-staged": "^7.2.0",
"prettier": "2.6.2",
"pretty-quick": "^3.1.3",
"typescript": "^4.3.4"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^1.3.0"
},
"resolutions": {
"@types/react": "16.14.0"
},
"packageManager": "[email protected]"
}