forked from opentechorg/starname-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.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
{
"name": "starname-explorer",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --stream",
"dry-build": "lerna run dry-build --stream",
"build-storybook": "lerna run build-storybook --stream",
"format": "lerna run format",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"release": "lerna run build && lerna publish",
"storybook": "lerna run storybook --stream",
"test": "lerna run --concurrency 1 test --stream"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/mongoose": "^5.10.0",
"@types/stream-chain": "^2.0.0",
"@types/stream-json": "^1.5.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-test-renderer": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-loader": "8.1.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^6.0.1",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-testing-library": "^3.10.1",
"lerna": "^3.22.1",
"prettier": "^2.1.2"
},
"dependencies": {
"@cosmjs/math": "^0.23.1",
"mongoose": "^5.10.13",
"typescript": "^4.1.2"
}
}