-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
39 lines (39 loc) · 1.04 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": "yi-note",
"private": true,
"version": "1.0.0",
"description": "YiNote monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"start:landing": "yarn workspace @yi-note/landing start",
"build:landing": "yarn workspace @yi-note/landing build",
"start:playground": "yarn workspace @yi-note/playground start",
"start:ext": "yarn workspace @yi-note/extension start:dev",
"build:ext": "yarn workspace @yi-note/extension build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shuowu/yi-note.git"
},
"author": "Shuo Wu <[email protected]>",
"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",
"prettier": "1.19.1"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
}
}