-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 959 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "root",
"private": true,
"devDependencies": {
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"lerna": "^3.22.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tsdx": "^0.14.0",
"typescript": "^4.0.3",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2"
},
"workspaces": [
"packages/*",
"samples/*"
],
"scripts": {
"lerna": "lerna",
"watch": "lerna run watch --stream --parallel",
"test": "lerna run test --",
"build": "lerna run build",
"prepublish": "lerna run prepublish"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"semi": true
},
"eslintConfig": {
"extends": [
"react-app",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"settings": {
"react": {
"version": "detect"
}
}
}
}