-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "@genstackio/libs",
"version": "0.0.0",
"description": "TS Libraries by GenStackIO",
"author": "Olivier Hoareau <[email protected]>",
"private": true,
"license": "ISC",
"scripts": {
"test": "jest --config jest.config.js",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@genjs/genjs": "^0.4.15",
"@genjs/genjs-plugin-cicd-github": "^0.6.6",
"@genjs/genjs-plugin-monorepo-js-libs": "^0.4.23",
"@types/jest": "^28.1.7",
"@types/node": "^16.11.51",
"autoprefixer": "^10.4.8",
"aws-sdk": "^2.1199.0",
"jest": "^28.1.3",
"lerna": "^5.4.3",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4",
"prettier": "^2.8.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-no-for-of-loops": "^1.0.1",
"eslint-plugin-no-function-declare-after-return": "^1.1.0",
"@typescript-eslint/parser": "^5.47.1",
"@typescript-eslint/eslint-plugin": "^5.47.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}