forked from byteyilabs/yi-note
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 KB
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
{
"name": "yi-note",
"version": "1.0.0",
"description": "YiNote monorepo",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"clean": "lerna clean",
"start": "lerna run start:dev --parallel",
"build": "lerna run build",
"ext:build:chromium": "lerna run --scope=@yi-note/extension build:chromium",
"ext:build:firefox": "lerna run --scope=@yi-note/extension build:firefox",
"ext:dev:firefox": "lerna run dev:firefox --parallel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shuowu/yi-note.git"
},
"author": "Shuo Wu <wushuo2010@gmail.com>",
"license": "GNU GPLv3",
"bugs": {
"url": "https://github.com/shuowu/yi-note/issues"
},
"homepage": "https://www.yinote.co",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.1",
"lerna": "^3.22.1",
"prettier": "1.19.1"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
}
}