forked from unlock-protocol/unlock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.39 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "unlock",
"version": "1.0.1",
"description": "Unlock is a protocol for decentralized access control",
"main": "index.js",
"private": true,
"directories": {
"doc": "docs"
},
"dependencies": {
"@babel/core": "7.18.2",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"babel-eslint": "10.1.0",
"babel-plugin-polyfill-corejs2": "0.3.1",
"typescript": "4.6.4"
},
"devDependencies": {
"eslint": "8.10.0",
"eslint-plugin-prettier": "latest",
"husky": "8.0.1",
"lint-staged": "13.0.0",
"prettier": "2.6.2"
},
"workspaces": [
"packages/**",
"smart-contracts",
"smart-contract-extensions",
"subgraph",
"unlock-app",
"unlock-js",
"unlock-protocol-com",
"locksmith",
"paywall",
"paywall-app",
"wedlocks"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"packages": "yarn workspaces foreach --from '{@unlock-protocol/types,@unlock-protocol/networks,@unlock-protocol/paywall,@unlock-protocol/unlock-js,@unlock-protocol/contracts,@unlock-protocol/ui}'",
"packages:clean": "yarn packages --parallel run clean",
"packages:build": "yarn packages --topological-dev run build",
"packages:publish": "yarn packages --no-private npm publish ",
"build": "yarn packages:clean && yarn packages:build",
"packages:version": "yarn packages version --deferred",
"version:apply": "yarn version apply --all",
"version:check": "yarn version check --interactive",
"bump": "yarn packages:version patch && yarn version:apply",
"release": "yarn build && yarn bump && yarn publish",
"start": "./scripts/start.sh",
"nuke": "./scripts/nuke.sh",
"lint": "yarn workspaces foreach -p lint",
"postinstall": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlock-protocol/unlock.git"
},
"greenkeeper": {
"prTitles": {
"basicPR": "Update ${dependency} to the latest version",
"groupPR": "Update ${dependency} in group ${group} to the latest version"
}
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/unlock-protocol/unlock/issues"
},
"homepage": "https://github.com/unlock-protocol/unlock#readme",
"packageManager": "[email protected]",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}