-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.71 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
{
"name": "verify-me",
"version": "0.0.1",
"license": "BSD-3-Clause-Clear",
"description": "SaaS",
"email": "[email protected]",
"repository": {
"type": "git",
"url": "ssh://[email protected]/rtang03/verify-me.git"
},
"author": "Dashslab",
"homepage": "https://github.com/rtang03/verify-me",
"bugs": {
"url": "https://github.com/rtang03/verify-me/issues"
},
"private": true,
"scripts": {
"start": "lerna run --stream --scope @microfrontend/* --parallel start",
"build": "lerna run --stream --scope @microfrontend/* build",
"lint": "lerna run --stream --scope @microfrontend/* lint",
"clean": "lerna run --stream --scope @microfrontend/* --parallel clean"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"uint8arrays"
]
},
"devDependencies": {
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"@types/node": "^14.14.31",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^26.6.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"jest-watch-typeahead": "^0.6.3",
"rimraf": "^3.0.2",
"typescript": "^4.2.4"
},
"prettier": {
"eslintIntegration": true,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"bracketSpacing": true,
"jsxBracketSameLine": true,
"requirePragma": false,
"insertPragma": false,
"printWidth": 100
},
"resolutions": {
"uint8arrays": "2.1.5"
}
}