forked from unlock-protocol/unlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 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
{
"name": "unlock",
"version": "1.0.0",
"description": "Unlock is a protocol for decentralized access control",
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"babel-eslint": "10.1.0",
"eslint": "7.28.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-mocha": "8.2.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-standard": "4.1.0",
"prettier": "2.3.1",
"typescript": "4.3.4"
},
"engines": {
"node": "^10"
},
"devDependencies": {
"husky": "6.0.0",
"lint-staged": "11.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd smart-contracts && yarn build && cd ../unlock-app && yarn build && cd ../locksmith && yarn build",
"start": "./scripts/start.sh",
"nuke": "./scripts/nuke.sh",
"lint": "./scripts/lint.sh",
"start-locksmith": "cd locksmith && yarn start"
},
"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"
}