-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"private": true,
"scripts": {
"build": "npm run build --workspaces",
"build:watch": "tsc --build --verbose --watch tsconfig.packages.json",
"clean": "npm run clean --workspaces",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"test:ci": "npm run test:ci --workspaces",
"prepublish-libs": "(npm run clean && npm run build) || (echo 'ERROR running build. Check logs above. Error not necessarily at bottom.' && exit -1)",
"publish-libs": "npx changeset publish && git push --follow-tags"
},
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@changesets/cli": "2.26.1",
"@types/express": "4.17.17",
"@types/jest": "29.5.1",
"@types/lodash": "4.14.194",
"@types/node": "16.18.23",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"express": "4.18.2",
"jest": "29.5.0",
"jest-extended": "3.2.4",
"nock": "^13.3.1",
"prettier": "2.8.7",
"supertest": "6.3.3",
"ts-jest": "29.1.0",
"typescript": "4.9.4"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"prettier": {
"printWidth": 120
}
}