forked from Asphere-xyz/bas-javascript-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "@ankr.com/bas-javascript-monorepo",
"workspaces": [
"packages/*"
],
"description": "Typescript monorepo",
"repository": "https://github.com/ankr-network/bas-javascript-monorepo",
"license": "MIT",
"private": true,
"scripts": {
"prestart": "yarn build",
"start": "run-p start:*",
"start:watch": "tsc --build --watch",
"pretest": "yarn build",
"build": "tsc --build",
"clean": "rimraf packages/*/{tsconfig.tsbuildinfo,lib,dist}"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@types/jest": "^27.4.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-webpack-plugin": "^2.5.2",
"lerna": "^3.14.1",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"typescript": "^4.6.2"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"babel": "^6.23.0"
}
}