-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "pandora",
"private": true,
"workspaces": [
"services/*",
"shared/*"
],
"devDependencies": {
"@types/jest": "^24.0.24",
"@types/node": "^12.12.21",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"ts-node": "^8.10.2",
"typescript": "4.7.4"
},
"resolutions": {
"typescript": "4.7.4"
},
"scripts": {
"build": "yarn run typescript:build",
"watch": "yarn run typescript:watch",
"clean": "yarn run typescript:clean",
"test": "yarn run test:eslint && yarn run test:jest",
"test:jest": "jest --config jest.config.json --no-cache",
"test:eslint": "eslint --ignore-path .gitignore --ignore-path .eslintignore {services,shared}/*/src/**/*.ts",
"typescript:build": "tsc --build ./tsconfig.project.json",
"typescript:watch": "tsc --build ./tsconfig.project.json --watch",
"typescript:clean": "rimraf ./{services,shared}/*/{lib,*.tsbuildinfo}",
"update:tsconfig": "ts-node scripts/update-package-tsconfig.ts"
}
}