This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
74 lines (74 loc) · 1.89 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
{
"name": "root",
"private": true,
"dependencies": {
"lerna": "3.22.1"
},
"workspaces": {
"packages": [
"shop",
"backend",
"packages/**"
],
"nohoist": [
"**/openzeppelin-solidity"
]
},
"devDependencies": {
"@google-cloud/storage": "5.7.4",
"@pinata/sdk": "1.1.11",
"babel-eslint": "10.1.0",
"commander": "7.0.0",
"eslint": "7.19.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-standard": "4.1.0",
"husky": "4.3.8",
"mocha": "8.2.1",
"prettier": "2.2.1"
},
"scripts": {
"bootstrap": "lerna bootstrap --no-ci --progress",
"build": "lerna run build",
"clean": "git clean -fdX .",
"start": "lerna run start --scope @origin/shop --stream --no-prefix",
"lint": "lerna run lint",
"format": "eslint **/**/*.js --quiet --fix",
"test": "node scripts/test.js",
"package-diffs": "find . -maxdepth 3 -name package.json -type f | grep -v node_modules | node scripts/package-versions.js",
"postinstall": "lerna run migrate --scope @origin/shop-backend --stream --no-prefix && mkdir -p shop/public/dist && cp node_modules/openpgp/dist/openpgp.min.js node_modules/openpgp/dist/openpgp.worker.min.js shop/public/dist"
},
"husky": {
"hooks": {
"pre-push": "lerna run lint"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"proseWrap": "always",
"trailingComma": "none"
},
"renovate": {
"extends": [
"config:base"
],
"groupName": "all",
"ignoreDeps": [
"openzeppelin-solidity",
"truffle",
"solc",
"sequelize",
"sequelize-cli",
"tailwindcss",
"bull-board",
"sqlite3"
],
"ignorePaths": [],
"schedule": "before 11am",
"rebaseStalePrs": false
},
"version": "0.0.0"
}