-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.1 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
{
"private": true,
"workspaces": [
"cxx-parser",
"terra",
"terra-core"
],
"scripts": {
"build": "tsc",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"test": "jest --coverage --selectProjects=test",
"test:integration": "jest --selectProjects=integration --verbose --useStderr --runInBand",
"test:terra": "jest --selectProjects=terra",
"test:terra-core": "jest --selectProjects=terra-core",
"test:cxx-parser": "jest --selectProjects=cxx-parser",
"test:integration:cxx-parser": "jest --selectProjects=integration:cxx-parser",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/mustache": "^4.2.2",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.5.0",
"prettier": "^2.0.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}