-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.26 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "noedit",
"version": "1.0.0",
"description": "",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"start": "lerna run start --scope @noedit/* --stream",
"start:core": "lerna run start --scope @noedit/core --stream",
"start:example": "lerna run start --scope @noedit/example --stream",
"build:test": "lerna run build-test --scope @noedit/example --stream",
"publish": "lerna publish",
"publish:force": "lerna publish --force-publish",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest"
},
"devDependencies": {
"lerna": "^3.22.1"
},
"dependencies": {
"@popperjs/core": "^2.11.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-popper": "^2.2.5",
"typescript": "^4.5.4"
},
"eslintConfig": {
"extends": [
"react-app",
"airbnb",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"prettier/react",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/no-explicit-any": [
"error"
],
"@typescript-eslint/explicit-function-return-type": [
"error"
],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".tsx"
]
}
]
},
"settings": {
"react": {
"version": "detect"
},
"import/resolver": {
"node": {
"extensions": [
".js",
".ts",
".tsx"
]
}
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoBey/noedit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NoBey/noedit/issues"
},
"homepage": "https://github.com/NoBey/noedit#readme",
"publishConfig": {
"access": "public"
}
}