forked from unlock-protocol/unlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.2 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
{
"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.15.8",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"babel-eslint": "10.1.0",
"babel-plugin-polyfill-corejs2": "0.2.2",
"eslint": "7.32.0",
"prettier": "2.4.1",
"typescript": "4.4.3"
},
"devDependencies": {
"husky": "7.0.2",
"lint-staged": "11.1.2"
},
"workspaces": [
"packages/**",
"smart-contracts",
"smart-contract-extensions",
"subgraph",
"unlock-app",
"unlock-js",
"unlock-protocol-com",
"locksmith",
"newsletter",
"paywall",
"paywall-app",
"wedlocks"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"packages": "yarn workspaces foreach --from '{@unlock-protocol/types,@unlock-protocol/paywall,@unlock-protocol/unlock-js,@unlock-protocol/networks}'",
"packages:clean": "yarn packages --parallel run clean",
"packages:build": "yarn packages --parallel --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"
},
"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": "yarn@3.1.0-rc.7"
}