forked from iircaz55/TronLink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1011 Bytes
/
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
{
"name": "tronlink",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"build:react": "lerna run build --scope @tronlink/popup",
"build:core": "lerna run build --ignore @tronlink/popup",
"update-version": "lerna publish --skip-git --skip-npm --force-publish '*'",
"lint": "lerna run lint",
"build:zip": "yarn build && npx bestzip chrome-extension.zip dist manifest.json packages/popup/build packages/popup/static"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.1.0",
"babel-eslint": "^10.0.1",
"babel-plugin-import": "^1.11.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-react": "^7.11.1",
"lerna": "^3.4.3"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"yarn": "^1.13.0"
}
}