-
-
Notifications
You must be signed in to change notification settings - Fork 252
/
package.json
100 lines (100 loc) · 3.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"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.26.0",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"babel-plugin-polyfill-corejs2": "0.4.11",
"node-gyp": "10.2.0",
"prettier-plugin-solidity": "1.4.1",
"typescript": "5.6.3"
},
"devDependencies": {
"@vitest/coverage-v8": "2.1.4",
"@vitest/eslint-plugin": "1.1.7",
"eslint": "9.14.0",
"eslint-plugin-evm-address-to-checksummed": "0.0.6",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-sort-keys-fix": "1.1.2",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"typescript-eslint": "8.12.2",
"vitest": "2.1.4"
},
"workspaces": [
"packages/**",
"governance",
"smart-contracts",
"subgraph",
"tests",
"unlock-app",
"unlock-js",
"unlock-protocol-com",
"locksmith",
"paywall",
"paywall-app",
"wedlocks",
"provider",
"docs",
"graph-service"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"packages": "yarn workspaces foreach --recursive --from '{@unlock-protocol/types,@unlock-protocol/core,@unlock-protocol/eslint-config,@unlock-protocol/hardhat-helpers,@unlock-protocol/express,@unlock-protocol/contracts,@unlock-protocol/networks,@unlock-protocol/paywall,@unlock-protocol/unlock-js,@unlock-protocol/crypto-icon,@unlock-protocol/ui,@unlock-protocol/hardhat-plugin,@unlock-protocol/email-templates}'",
"packages:clean": "yarn packages --parallel run clean",
"packages:build": "yarn packages --topological-dev run build",
"packages:publish": "yarn packages --parallel --verbose npm publish --tolerate-republish",
"apps:build": "yarn workspace @unlock-protocol/locksmith run build",
"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 packages:publish",
"start": "yarn start:infra && yarn start:apps",
"start:infra": "./scripts/start-infra.sh",
"start:apps": "./scripts/start-apps.sh",
"logs:infra": "./scripts/start/logs.sh",
"stop": "./scripts/stop.sh",
"nuke": "./scripts/nuke.sh",
"lint": "yarn packages --parallel run lint",
"lint:contracts": "yarn workspace @unlock-protocol/smart-contracts lint:contracts --fix",
"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"
},
"engines": {
"node": ">=20.0.0"
},
"engineStrict": true,
"homepage": "https://github.com/unlock-protocol/unlock#readme",
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,ts,tsx}": "yarn run lint --fix",
"*.{js,ts,tsx,sol,css,md}": "prettier --write --plugin=prettier-plugin-solidity",
"*.sol": "yarn lint:contracts --noPrompt"
}
}