-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "jwt4auth",
"version": "0.1.2",
"private": true,
"repository": "git@github.com:Alesh/jwt4auth.git",
"author": "Alexey Poryadin <alexey.poryadin@gmail.com>",
"workspaces": [
"packages/general",
"packages/reactjs",
"sample"
],
"scripts": {
"start": "lerna run start --stream --parallel",
"watch": "lerna run watch --stream --parallel",
"build": "lerna run build",
"test": "lerna run test --",
"prepublish": "lerna run prepublish",
"lerna": "lerna"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"settings": {
"react": {
"version": "detect"
}
}
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"semi": true
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"lerna": "^3.22.1",
"jest": "26.6.0",
"prettier": "^2.1.2"
}
}